[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / clang / test / CodeGenObjC / 2008-11-25-Blocks.m
blobf0be6de338980b7dbc442f329742ea6504a60e4c
1 // RUN: %clang_cc1 -fblocks -emit-llvm %s -o /dev/null
3 @interface bork
4 - (id)B:(void (^)(void))blk;
5 - (void)C;
6 @end
7 @implementation bork
8 - (id)B:(void (^)(void))blk {
9   __attribute__((__blocks__(byref))) bork* new = ((void *)0);
10   blk();
12 - (void)C {
13   __attribute__((__blocks__(byref))) id var;
14   [self B:^(void) {}];
16 @end