mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-23 20:34:58 +00:00
28e82b6565
-t is --symbols in llvm-readobj but --section-details (unimplemented) in readelf. The confusing option should not be used since we aim for improving compatibility. Keep just one llvm-readobj -t use case in test/tools/llvm-readobj/symbols.test llvm-svn: 359661
13 lines
253 B
ArmAsm
13 lines
253 B
ArmAsm
// RUN: llvm-mc -triple i686-pc-linux -filetype=obj %s -o - | llvm-readobj --symbols | FileCheck %s
|
|
|
|
// MC allows ?'s in symbol names as an extension.
|
|
|
|
.text
|
|
.globl foo?bar
|
|
.type foo?bar, @function
|
|
foo?bar:
|
|
ret
|
|
|
|
// CHECK: Symbol
|
|
// CHECK: Name: foo?bar
|