diff options
Diffstat (limited to 'test/CodeGen/blocks.c')
-rw-r--r-- | test/CodeGen/blocks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/blocks.c b/test/CodeGen/blocks.c index 5871e8c..2a81826 100644 --- a/test/CodeGen/blocks.c +++ b/test/CodeGen/blocks.c @@ -72,7 +72,7 @@ void (^b)() = ^{}; int main() { (b?: ^{})(); } -// CHECK: [[ZERO:%.*]] = load void (...)** @b +// CHECK: [[ZERO:%.*]] = load void (...)*, void (...)** @b // CHECK-NEXT: [[TB:%.*]] = icmp ne void (...)* [[ZERO]], null // CHECK-NEXT: br i1 [[TB]], label [[CT:%.*]], label [[CF:%.*]] // CHECK: [[ONE:%.*]] = bitcast void (...)* [[ZERO]] to void ()* |