in release mode, irbuilder doesn't add names to instructions,

this will hopefully fix the osuosl clang-i686-darwin10 builder.

llvm-svn: 109760
This commit is contained in:
Chris Lattner 2010-07-29 17:14:05 +00:00
parent cd84084f02
commit 44f9c3b3f1
1 changed files with 2 additions and 2 deletions

View File

@ -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;