[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / cross-project-tests / debuginfo-tests / llgdb-tests / block_var.m
blob7ec786f179873286062b433946f17cc4be8c8dc3
1 // RUN: %clang %target_itanium_abi_host_triple -O0 -g %s -c -o %t.o
2 // RUN: %clang %target_itanium_abi_host_triple %t.o -o %t.out -framework Foundation
3 // RUN: %test_debuginfo %s %t.out 
5 // REQUIRES: system-darwin
7 // DEBUGGER: break 24
8 // DEBUGGER: r
9 // DEBUGGER: p result
10 // CHECK: ${{[0-9]}} = 42
12 void doBlock(void (^block)(void))
14     block();
17 int I(int n)
19     __block int result;
20     int i = 2;
21     doBlock(^{
22         result = n;
23     });
24     return result + i; /* Check value of 'result' */
28 int main (int argc, const char * argv[]) {
29   return I(42);