aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-07-29 17:14:05 +0000
committerChris Lattner <sabre@nondot.org>2010-07-29 17:14:05 +0000
commitc10ab19fcbc70e3d3897f3c8dbacf6f89a3dfa8c (patch)
tree98a495a652b34a5e26f56b2b54f663f8c6c1d427
parenta7206c5367c2e5879fe6d9a07ed50aa003a56976 (diff)
in release mode, irbuilder doesn't add names to instructions,
this will hopefully fix the osuosl clang-i686-darwin10 builder. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109760 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/x86_64-arguments.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/x86_64-arguments.c b/test/CodeGen/x86_64-arguments.c
index 5da5744b6e..3bbbc5455d 100644
--- a/test/CodeGen/x86_64-arguments.c
+++ b/test/CodeGen/x86_64-arguments.c
@@ -157,9 +157,9 @@ typedef float v4f32 __attribute__((__vector_size__(16)));
v4f32 f25(v4f32 X) {
// CHECK: define <4 x float> @f25(<4 x float> %X)
// CHECK-NOT: alloca
- // CHECK: %X.addr = alloca <4 x float>
+ // CHECK: alloca <4 x float>
// CHECK-NOT: alloca
- // CHECK: store <4 x float> %X, <4 x float>* %X.addr
+ // CHECK: store <4 x float> %X, <4 x float>*
// CHECK-NOT: store
// CHECK: ret <4 x float>
return X+X;