summaryrefslogtreecommitdiff
path: root/test/CodeGen/bitfield-promote.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/bitfield-promote.c')
-rw-r--r--test/CodeGen/bitfield-promote.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/CodeGen/bitfield-promote.c b/test/CodeGen/bitfield-promote.c
index 5894e51626da2..1290a1ecd33b5 100644
--- a/test/CodeGen/bitfield-promote.c
+++ b/test/CodeGen/bitfield-promote.c
@@ -1,7 +1,6 @@
-// RUN: clang -O3 -emit-llvm -S -o %t %s &&
-// RUN: grep 'ret i64 4294967292' %t | count 2 &&
-// RUN: grep 'ret i64 -4' %t | count 1 &&
-// RUN: true
+// RUN: clang -O3 -emit-llvm -S -o %t %s
+// RUN: grep 'ret i64 4294967292' %t | count 2
+// RUN: grep 'ret i64 -4' %t | count 1
long long f0(void) {
struct { unsigned f0 : 32; } x = { 18 };