Update testing case to use FileCheck instead of grep.
llvm-svn: 188929
diff --git a/clang/test/CodeGen/bitfield.c b/clang/test/CodeGen/bitfield.c
index dea5e43..03748a0 100644
--- a/clang/test/CodeGen/bitfield.c
+++ b/clang/test/CodeGen/bitfield.c
@@ -1,6 +1,4 @@
-// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o %t -O3
-// RUN: grep "ret i32" %t | count 4
-// RUN: grep "ret i32 1" %t | count 4
+// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - -O3 | FileCheck %s
static int f0(int n) {
struct s0 {
@@ -17,6 +15,8 @@
}
int g0(void) {
+// CHECK-LABEL: @g0()
+// CHECK: ret i32 1
return f0(-1) + 44335655;
}
@@ -35,6 +35,8 @@
}
int g1(void) {
+// CHECK-LABEL: @g1()
+// CHECK: ret i32 1
return f1() + 16;
}
@@ -51,6 +53,8 @@
}
int g2(void) {
+// CHECK-LABEL: @g2()
+// CHECK: ret i32 1
return f2() - 9;
}
@@ -70,5 +74,7 @@
}
int g3(void) {
+// CHECK-LABEL: @g3()
+// CHECK: ret i32 1
return f3(20) + 130725747;
}