aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/debug-info-pubtypes.m
blob: ebe87d40f7a8c959eff17caf426db6979bd6f415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// REQUIRES: x86-64-registered-target
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -emit-llvm %s -o - | FileCheck %s

// CHECK: !{{.*}} = metadata !{i32 {{.*}}, metadata ![[FILE:.*]], metadata !"H", metadata ![[FILE]], i32 6, i64 0, i64 8, i32 0, i32 512, null, metadata !{{.*}}, i32 16, null, null} ; [ DW_TAG_structure_type ]

@interface H
-(void) foo;
@end

@implementation H
-(void) foo {
}
@end