From f29865d9bb40df7dfb76377b8ada484fe08e87b2 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Thu, 29 Nov 2012 12:43:56 +0000 Subject: [PATCH] [msan] Update tests (broken in r168873). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168874 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Instrumentation/MemorySanitizer/msan_basic.ll | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test/Instrumentation/MemorySanitizer/msan_basic.ll b/test/Instrumentation/MemorySanitizer/msan_basic.ll index a5a43556faf..74d9670d594 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: } -- 2.34.1