phunix/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-ivars-extension.m
Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
This brings our tree to NetBSD 7.0, as found on -current on the
10-10-2015.

This updates:
 - LLVM to 3.6.1
 - GCC to GCC 5.1
 - Replace minix/commands/zdump with usr.bin/zdump
 - external/bsd/libelf has moved to /external/bsd/elftoolchain/
 - Import ctwm
 - Drop sprintf from libminc

Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
2016-01-13 20:32:14 +01:00

34 lines
813 B
Objective-C

// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -g %s -o - | FileCheck %s
// Make sure we generate debug symbols for ivars added by a class extension.
@interface I
{
@public int a;
}
@end
void foo(I* pi) {
// poking into pi for primary class ivars.
int _a = pi->a;
}
@interface I()
{
@public int b;
}
@end
void gorf (I* pg) {
// poking into pg for ivars for class extension
int _b = pg->b;
}
// CHECK: {{.*}} [ DW_TAG_structure_type ] [I]
// Check for "a".
// CHECK: {{.*}} [ DW_TAG_member ] [a] [line 7, size 32, align 32, offset 0] [public] [from int]
// Make sure we don't output the same type twice.
// CHECK-NOT: {{.*}} [ DW_TAG_structure_type ] [I]
// Check for "b".
// CHECK: {{.*}} [ DW_TAG_member ] [b] [line 18, size 32, align 32, offset 0] [public] [from int]