Fix this test case on no-asserts builds by not trying to match the basic
block line.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120893 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/volatile-1.c b/test/CodeGen/volatile-1.c
index d8ce39a..f54afff 100644
--- a/test/CodeGen/volatile-1.c
+++ b/test/CodeGen/volatile-1.c
@@ -305,7 +305,9 @@
 extern volatile enum X x;
 // CHECK: define void @test1()
 void test1() {
-  // CHECK-NEXT: :
+  extern void test1_helper(void);
+  test1_helper();
+  // CHECK: call void @test1_helper()
   // CHECK-NEXT: ret void
   x;
   (void) x;