From: Eric Christopher Date: Tue, 26 Jul 2011 22:31:33 +0000 (+0000) Subject: Attempt to generalize this test for release mode buildbots. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c694411349bd34a0e8c02036d051dc7996bdda98;p=clang Attempt to generalize this test for release mode buildbots. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136163 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/2007-11-07-CopyAggregateAlign.c b/test/CodeGen/2007-11-07-CopyAggregateAlign.c index d6caf78aed..c2f2662ebe 100644 --- a/test/CodeGen/2007-11-07-CopyAggregateAlign.c +++ b/test/CodeGen/2007-11-07-CopyAggregateAlign.c @@ -2,6 +2,6 @@ struct A { char s, t, u, v; short a; }; // CHECK: %a = alloca %struct.A, align 2 // CHECK: %b = alloca %struct.A, align 2 -// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64(i8* %tmp, i8* %tmp1, i64 6, i32 2, i1 false) +// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64{{.*}}, i32 2, i1 false) void q() { struct A a, b; a = b; }