From: Chris Lattner Date: Sat, 11 Apr 2009 19:49:49 +0000 (+0000) Subject: pass -fblocks X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=273cd4224e13dab6bf738183ace8f93f914ec95c;p=clang 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 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( - ^() - { - } + ^() { } ); }