Fariborz Jahanian | 14674ff | 2009-05-27 19:54:11 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s && |
2 | // RUN: grep 'objc_assign' %t | count 0 | ||||
3 | |||||
4 | typedef struct { | ||||
5 | int ival; | ||||
6 | id submenu; | ||||
7 | } XCBinderContextMenuItem; | ||||
8 | |||||
9 | id actionMenuForDataNode(void) { | ||||
10 | XCBinderContextMenuItem menusToCreate[] = { | ||||
11 | {1, 0} | ||||
12 | }; | ||||
13 | return 0; | ||||
14 | } | ||||
15 | |||||
16 | XCBinderContextMenuItem GmenusToCreate[] = { | ||||
17 | {1, 0} | ||||
18 | }; |