https://github.com/epiqc/ScaffCC
Revision 801b6f99805aa2112d529bca5a608bbe104d4055 authored by ali@mingzhe-1.cs.uchicago.edu on 26 January 2017, 07:14:30 UTC, committed by ali@mingzhe-1.cs.uchicago.edu on 26 January 2017, 07:14:30 UTC
2 parent s 7aceb7c + 294ade4
Raw File
Tip revision: 801b6f99805aa2112d529bca5a608bbe104d4055 authored by ali@mingzhe-1.cs.uchicago.edu on 26 January 2017, 07:14:30 UTC
Merge branch 'master' of https://github.com/epiqc/ScaffCC
Tip revision: 801b6f9
debug-info-property3.m
// RUN: %clang_cc1 -S -emit-llvm -g %s -o - | FileCheck %s

// CHECK: metadata !"p1", metadata !6, i32 5, metadata !"", metadata !"", i32 2316, metadata !9} ; [ DW_TAG_APPLE_property ]
@interface I1
@property int p1;
@end

@implementation I1
@synthesize p1;
@end

void foo(I1 *iptr) {}
back to top