diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2014-05-31 00:26:03 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2014-05-31 00:26:03 +0000 |
commit | 82667c73806d59f88c517744729333736a15c2bf (patch) | |
tree | 8f3cf0d75327bdf6c867cfc05e94920d2774f51f /llvm/test/Instrumentation/ThreadSanitizer/tsan_basic.ll | |
parent | 20f6f45c5ba74706e54cb3bc60963d598e156912 (diff) | |
download | bcm5719-llvm-82667c73806d59f88c517744729333736a15c2bf.tar.gz bcm5719-llvm-82667c73806d59f88c517744729333736a15c2bf.zip |
[TSan] Fixup a test case after r209939
llvm-svn: 209945
Diffstat (limited to 'llvm/test/Instrumentation/ThreadSanitizer/tsan_basic.ll')
-rw-r--r-- | llvm/test/Instrumentation/ThreadSanitizer/tsan_basic.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Instrumentation/ThreadSanitizer/tsan_basic.ll b/llvm/test/Instrumentation/ThreadSanitizer/tsan_basic.ll index d449a97a62a..dc6e43e3ecb 100644 --- a/llvm/test/Instrumentation/ThreadSanitizer/tsan_basic.ll +++ b/llvm/test/Instrumentation/ThreadSanitizer/tsan_basic.ll @@ -27,7 +27,7 @@ declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) ; Check that tsan converts mem intrinsics back to function calls. -define void @MemCpyTest(i8* nocapture %x, i8* nocapture %y) { +define void @MemCpyTest(i8* nocapture %x, i8* nocapture %y) sanitize_thread { entry: tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* %x, i8* %y, i64 16, i32 4, i1 false) ret void @@ -36,7 +36,7 @@ entry: ; CHECK: ret void } -define void @MemMoveTest(i8* nocapture %x, i8* nocapture %y) { +define void @MemMoveTest(i8* nocapture %x, i8* nocapture %y) sanitize_thread { entry: tail call void @llvm.memmove.p0i8.p0i8.i64(i8* %x, i8* %y, i64 16, i32 4, i1 false) ret void @@ -45,7 +45,7 @@ entry: ; CHECK: ret void } -define void @MemSetTest(i8* nocapture %x) { +define void @MemSetTest(i8* nocapture %x) sanitize_thread { entry: tail call void @llvm.memset.p0i8.i64(i8* %x, i8 77, i64 16, i32 4, i1 false) ret void |