diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-07-29 17:14:05 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-07-29 17:14:05 +0000 |
| commit | 44f9c3b3f1529e57f7c8a61daa6bc67e85740cec (patch) | |
| tree | f239a299ae90944148b38189ac4c81d5b81ac7a7 | |
| parent | cd84084f0270d04e2c2e0d4d3e0b7b34e1a0ea77 (diff) | |
| download | bcm5719-llvm-44f9c3b3f1529e57f7c8a61daa6bc67e85740cec.tar.gz bcm5719-llvm-44f9c3b3f1529e57f7c8a61daa6bc67e85740cec.zip | |
in release mode, irbuilder doesn't add names to instructions,
this will hopefully fix the osuosl clang-i686-darwin10 builder.
llvm-svn: 109760
| -rw-r--r-- | clang/test/CodeGen/x86_64-arguments.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/x86_64-arguments.c b/clang/test/CodeGen/x86_64-arguments.c index 5da5744b6e3..3bbbc5455d3 100644 --- a/clang/test/CodeGen/x86_64-arguments.c +++ b/clang/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; |

