From 273cd4224e13dab6bf738183ace8f93f914ec95c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 11 Apr 2009 19:49:49 +0000 Subject: [PATCH] pass -fblocks git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68878 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/kr-style-block.c | 6 ++---- 1 file 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( - ^() - { - } + ^() { } ); } -- 2.50.1