mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
a595d2986a
Now that almost all functionality of Apple's dsymutil has been upstreamed, the open source variant can be used as a drop in replacement. Hence we feel it's no longer necessary to have the llvm prefix. Differential revision: https://reviews.llvm.org/D44527 llvm-svn: 327790
18 lines
491 B
Plaintext
18 lines
491 B
Plaintext
RUN: 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
|