mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 06:39:12 +00:00
45648a4496
FileCheck actually doesn't support combo suffixes. Differential Revision: http://reviews.llvm.org/D17588 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@262054 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
496 B
Plaintext
18 lines
496 B
Plaintext
RUN: llvm-dsymutil -dump-debug-map -oso-prepend-path %p %p/Inputs/absolute_sym.macho.i386 | FileCheck %s
|
|
|
|
The tested object file has been created by the dummy Objective-C code:
|
|
@interface Foo
|
|
@end
|
|
|
|
@implementation Foo
|
|
@end
|
|
|
|
int main() { return 0; }
|
|
|
|
compiled for i386. This create an absolute symbol .objc_class_name_Foo
|
|
We must not consider this symbol for debug info linking as its address
|
|
might conflict with other real symbols in the same file.
|
|
|
|
CHECK: objc_class_name_Foo
|
|
CHECK-NOT: objAddr
|