| Devang Patel | 8d3f897 | 2011-05-19 23:37:41 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s |
| 2 | // Radar 9468526 | ||||
| 3 | @interface I { | ||||
| 4 | int _p1; | ||||
| 5 | } | ||||
| 6 | @property int p1; | ||||
| 7 | @end | ||||
| 8 | |||||
| 9 | @implementation I | ||||
| 10 | @synthesize p1 = _p1; | ||||
| 11 | @end | ||||
| 12 | |||||
| 13 | int main() { | ||||
| 14 | I *myi; | ||||
| 15 | myi.p1 = 2; | ||||
| 16 | return 0; | ||||
| 17 | } | ||||
| 18 | |||||
| Eric Christopher | ea32047 | 2012-04-03 00:44:15 +0000 | [diff] [blame] | 19 | // FIXME: Make this test ir files. |
| 20 | // CHECK: .loc 2 6 0 | ||||