mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 00:31:49 +00:00
llvm-nm: print 'n' instead of '?'
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
This commit is contained in:
parent
1ebbc68719
commit
bfb732def0
@ -1,7 +1,12 @@
|
||||
// RUN: llvm-mc %s -o %t -filetype=obj -triple=x86_64-pc-linux
|
||||
// RUN: llvm-nm --print-size %t | FileCheck %s
|
||||
|
||||
// CHECK: 0000000000000000 ffffffffffffffff t a
|
||||
// CHECK: 0000000000000000 ffffffffffffffff n a
|
||||
// CHECK: 0000000000000000 0000000000000000 N b
|
||||
|
||||
.section foo
|
||||
a:
|
||||
.size a, 0xffffffffffffffff
|
||||
|
||||
.global b
|
||||
b:
|
||||
|
@ -675,7 +675,7 @@ static char getSymbolNMTypeChar(ELFObjectFile<ELFT> &Obj,
|
||||
.Default('?');
|
||||
}
|
||||
|
||||
return '?';
|
||||
return 'n';
|
||||
}
|
||||
|
||||
static char getSymbolNMTypeChar(COFFObjectFile &Obj, symbol_iterator I) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user