diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2012-11-29 12:43:56 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2012-11-29 12:43:56 +0000 |
commit | f29865d9bb40df7dfb76377b8ada484fe08e87b2 (patch) | |
tree | 67313321b3f26916182ae509c85ed110a1268a82 /test/Instrumentation | |
parent | f62b4e3ee3cc667020d5de91dfec69ce58c1d1ea (diff) |
[msan] Update tests (broken in r168873).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168874 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Instrumentation')
-rw-r--r-- | test/Instrumentation/MemorySanitizer/msan_basic.ll | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/Instrumentation/MemorySanitizer/msan_basic.ll b/test/Instrumentation/MemorySanitizer/msan_basic.ll index a5a43556fa..74d9670d59 100644 --- a/test/Instrumentation/MemorySanitizer/msan_basic.ll +++ b/test/Instrumentation/MemorySanitizer/msan_basic.ll @@ -143,8 +143,7 @@ entry: declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) nounwind ; CHECK: define void @MemSet -; CHECK: call void @llvm.memset.p0i8.i64 -; CHECK: call void @llvm.memset.p0i8.i64 +; CHECK: call i8* @__msan_memset ; CHECK: } @@ -158,8 +157,7 @@ entry: declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind ; CHECK: define void @MemCpy -; CHECK: call void @llvm.memcpy.p0i8.p0i8.i64 -; CHECK: call void @llvm.memcpy.p0i8.p0i8.i64 +; CHECK: call i8* @__msan_memcpy ; CHECK: } @@ -173,7 +171,7 @@ entry: declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind ; CHECK: define void @MemMove -; CHECK: call i8* @memmove +; CHECK: call i8* @__msan_memmove ; CHECK: } |