forked from OSchip/llvm-project
25 lines
697 B
ArmAsm
25 lines
697 B
ArmAsm
|
# REQUIRES: x86
|
||
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t.o
|
||
|
# RUN: lld -flavor darwinnew -syslibroot %S/Inputs/MacOSX.sdk -lSystem %t.o -o %t
|
||
|
# RUN: llvm-objdump --macho --syms --exports-trie %t | FileCheck %s
|
||
|
|
||
|
# CHECK-LABEL: SYMBOL TABLE:
|
||
|
# CHECK-DAG: 000000000000dead g *ABS* _foo
|
||
|
# CHECK-DAG: 000000000000beef g *ABS* _weakfoo
|
||
|
|
||
|
# CHECK-LABEL: Exports trie:
|
||
|
# CHECK-DAG: 0x0000DEAD _foo [absolute]
|
||
|
# CHECK-DAG: 0x0000BEEF _weakfoo [absolute]
|
||
|
|
||
|
.globl _foo, _weakfoo, _main
|
||
|
.weak_definition _weakfoo
|
||
|
_foo = 0xdead
|
||
|
_weakfoo = 0xbeef
|
||
|
|
||
|
.text
|
||
|
_main:
|
||
|
ret
|
||
|
|
||
|
## TODO: once we support emitting local symbols in the symtab, test local
|
||
|
## absolute symbols too
|