aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-07-26 22:31:33 +0000
committerEric Christopher <echristo@apple.com>2011-07-26 22:31:33 +0000
commitc694411349bd34a0e8c02036d051dc7996bdda98 (patch)
treeb7cb66b1bb9839a56462a14f58160946b4d55349
parentc0ecde32f1d42a9a606975eb7da5e5457cd08f11 (diff)
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
-rw-r--r--test/CodeGen/2007-11-07-CopyAggregateAlign.c2
1 files changed, 1 insertions, 1 deletions
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; }