mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-06 05:33:28 +00:00
This matches gnu nm and has the advantage that there is a upper case N. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240655 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
290 B
ArmAsm
13 lines
290 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
|
|
|
|
.section foo
|
|
a:
|
|
.size a, 0xffffffffffffffff
|
|
|
|
.global b
|
|
b:
|