
This patch works towards consolidating all Clang debug-info into the `clang/test/DebugInfo` directory (https://discourse.llvm.org/t/clang-test-location-of-clang-debug-info-tests/87958). Here we move only the `clang/test/CodeGenObjC` tests. The list of files i came up with is: 1. searched for anything with `*debug-info*` in the filename 2. searched for occurrences of `debug-info-kind` in the tests
16 lines
315 B
Objective-C
16 lines
315 B
Objective-C
// FIXME: Check IR rather than asm, then triple is not needed.
|
|
// RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited %s -o - | FileCheck %s
|
|
// CHECK: AT_APPLE_objc_complete_type
|
|
|
|
@interface Foo {} @end
|
|
|
|
@interface Foo () {
|
|
int *bar;
|
|
}
|
|
@end
|
|
|
|
@implementation Foo
|
|
@end
|
|
|
|
void bar(Foo *fptr) {}
|