diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-06-10 15:48:26 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-06-10 15:48:26 +0000 |
commit | 34fe86cd9c83c04685b784e7ff29181b4981d6ce (patch) | |
tree | 6d99ca435c16234c2919abb7b7b5a8592d9f5310 | |
parent | 400c49c781017aaf1055f82fb3c6786075e8f9d2 (diff) | |
download | bcm5719-llvm-34fe86cd9c83c04685b784e7ff29181b4981d6ce.tar.gz bcm5719-llvm-34fe86cd9c83c04685b784e7ff29181b4981d6ce.zip |
Fix the setup of CodeGen/bitfield.c test.
Due to the broken setup it was passing the test while it should have failed.
llvm-svn: 52181
-rw-r--r-- | clang/test/CodeGen/bitfield.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/bitfield.c b/clang/test/CodeGen/bitfield.c index 740c41c5369..5f609b47b7c 100644 --- a/clang/test/CodeGen/bitfield.c +++ b/clang/test/CodeGen/bitfield.c @@ -2,9 +2,9 @@ // RUN: grep "shl i32 %tmp, 19" %t1 && // RUN: grep "ashr i32 %tmp1, 19" %t1 && // RUN: grep "shl i16 %tmp4, 1" %t1 && -// RUN: grep "lshr i16 %tmp5, 9" %t1 -// RUN: grep "and i32 %tmp, -8192" %t1 -// RUN: grep "and i16 %tmp5, -32513" %t1 +// RUN: grep "lshr i16 %tmp5, 9" %t1 && +// RUN: grep "and i32 %tmp, -8192" %t1 && +// RUN: grep "and i16 %tmp5, -32513" %t1 && // RUN: grep "getelementptr (i32\* bitcast (.struct.STestB2\* @stb2 to i32\*), i32 1)" %t1 // Test bitfield access |