[cfe-commits] r109760 - /cfe/trunk/test/CodeGen/x86_64-arguments.c

Chris Lattner sabre at nondot.org
Thu Jul 29 10:14:06 PDT 2010


Author: lattner
Date: Thu Jul 29 12:14:05 2010
New Revision: 109760

URL: http://llvm.org/viewvc/llvm-project?rev=109760&view=rev
Log:
in release mode, irbuilder doesn't add names to instructions,
this will hopefully fix the osuosl clang-i686-darwin10 builder.

Modified:
    cfe/trunk/test/CodeGen/x86_64-arguments.c

Modified: cfe/trunk/test/CodeGen/x86_64-arguments.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/x86_64-arguments.c?rev=109760&r1=109759&r2=109760&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/x86_64-arguments.c (original)
+++ cfe/trunk/test/CodeGen/x86_64-arguments.c Thu Jul 29 12:14:05 2010
@@ -157,9 +157,9 @@
 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;





More information about the cfe-commits mailing list