forked from OSchip/llvm-project
24 lines
623 B
ArmAsm
24 lines
623 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t.o
|
|
# RUN: %lld -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-DAG: 000000000000cafe l *ABS* _localfoo
|
|
|
|
# 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
|
|
_localfoo = 0xcafe
|
|
|
|
.text
|
|
_main:
|
|
ret
|