mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
119632fa81
FileCheck actually doesn't support combo suffixes. Differential Revision: http://reviews.llvm.org/D17588 llvm-svn: 262054
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
|