mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-30 15:10:33 +00:00
7b7c81cd35
getSymbolValue now returns a value that in convenient for most callers: * 0 for undefined * symbol size for common symbols * offset/address for symbols the rest Code that needs something more specific can check getSymbolFlags. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241605 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
431 B
ArmAsm
19 lines
431 B
ArmAsm
// RUN: llvm-mc %s -o %t -filetype=obj -triple=x86_64-pc-linux
|
|
// RUN: llvm-nm --print-size %t | FileCheck %s
|
|
|
|
// CHECK: 0000000000000000 ffffffffffffffff n a
|
|
// CHECK: 0000000000000000 0000000000000000 N b
|
|
// CHECK: 0000000000000004 0000000000000004 C c
|
|
// CHECK: ffffffffffffffff 0000000000000000 a d
|
|
|
|
.section foo
|
|
a:
|
|
.size a, 0xffffffffffffffff
|
|
|
|
.global b
|
|
b:
|
|
|
|
.comm c,4,8
|
|
|
|
d = 0xffffffffffffffff
|