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 | 07665dae8b99e2965b5816f357934fbc9ccc6b5a (patch) | |
tree | 9d514e5f34fcbfbba1acec9595239e8812a9e72c /test/CodeGen/bitfield.c | |
parent | 8891184b232879b80350fec7e2e7a6ce2f25c9fd (diff) | |
download | clang-07665dae8b99e2965b5816f357934fbc9ccc6b5a.tar.gz |
Fix the setup of CodeGen/bitfield.c test.
Due to the broken setup it was passing the test while it should have failed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52181 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/bitfield.c')
-rw-r--r-- | test/CodeGen/bitfield.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/bitfield.c b/test/CodeGen/bitfield.c index 740c41c536..5f609b47b7 100644 --- a/test/CodeGen/bitfield.c +++ b/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 |