Timur Iskhodzhanov | ad47776 | 2014-01-30 01:01:36 +0000 | [diff] [blame] | 1 | // FIXME: Check IR rather than asm, then triple is not needed. |
Douglas Katzman | 3459ce2 | 2015-10-08 04:24:12 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -debug-info-kind=limited %s -o - | FileCheck %s |
Devang Patel | 5a54065 | 2011-09-19 18:54:16 +0000 | [diff] [blame] | 3 | |
| 4 | // CHECK: AT_APPLE_property_name |
| 5 | @interface C { |
| 6 | int _base; |
| 7 | } |
| 8 | @property int base; |
| 9 | @end |
| 10 | |
| 11 | @implementation C |
| 12 | @synthesize base = _base; |
| 13 | @end |
| 14 | |
| 15 | void foo(C *cptr) {} |