aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/kr-style-block.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/CodeGen/kr-style-block.c b/test/CodeGen/kr-style-block.c
index ccaa2c5144..ac788dc9ab 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(
- ^()
- {
- }
+ ^() { }
);
}