[cfe-commits] r52181 - /cfe/trunk/test/CodeGen/bitfield.c
Argiris Kirtzidis
akyrtzi at gmail.com
Tue Jun 10 08:48:26 PDT 2008
Author: akirtzidis
Date: Tue Jun 10 10:48:26 2008
New Revision: 52181
URL: http://llvm.org/viewvc/llvm-project?rev=52181&view=rev
Log:
Fix the setup of CodeGen/bitfield.c test.
Due to the broken setup it was passing the test while it should have failed.
Modified:
cfe/trunk/test/CodeGen/bitfield.c
Modified: cfe/trunk/test/CodeGen/bitfield.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/bitfield.c?rev=52181&r1=52180&r2=52181&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/bitfield.c (original)
+++ cfe/trunk/test/CodeGen/bitfield.c Tue Jun 10 10:48:26 2008
@@ -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
More information about the cfe-commits
mailing list