Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGenObjC/property-dbg.m @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 0572611fdcc8 |
children |
line wrap: on
line source
// FIXME: Check IR rather than asm, then triple is not needed. // RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited -x objective-c < %s | grep DW_AT_name @interface Foo { int i; } @property int i; @end @implementation Foo @synthesize i; @end int bar(Foo *f) { int i = 1; f.i = 2; i = f.i; return i; }