Fix this on the bots and make the test more complete by enabling optimizations.

llvm-svn: 143223
diff --git a/clang/test/CodeGen/pr9614.c b/clang/test/CodeGen/pr9614.c
index e761bec..8c767766 100644
--- a/clang/test/CodeGen/pr9614.c
+++ b/clang/test/CodeGen/pr9614.c
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
+// RUN: %clang_cc1 -emit-llvm %s -O1 -o - | FileCheck %s
 
 extern void foo_alias (void) __asm ("foo");
 inline void foo (void) {
@@ -14,8 +14,7 @@
 }
 
 // CHECK: define void @f()
-// CHECK-NEXT: entry:
-// CHECK-NEXT: call void @foo()
+// CHECK: call void @foo()
 // CHECK-NEXT: call void @bar()
 // CHECK-NEXT: ret void