pass -fblocks


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68878 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/kr-style-block.c b/test/CodeGen/kr-style-block.c
index ccaa2c5..ac788dc 100644
--- a/test/CodeGen/kr-style-block.c
+++ b/test/CodeGen/kr-style-block.c
@@ -1,12 +1,10 @@
-// RUN: clang-cc -emit-llvm %s -o %t
+// RUN: clang-cc -emit-llvm %s -o %t -fblocks
 
 void foo (void(^)());
 
 int main()
 {
 foo(
-  ^()
-   {
-   }
+  ^() { }
 );
 }