mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01: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
20 lines
484 B
ArmAsm
20 lines
484 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s -o - | llvm-readobj --symbols -r | FileCheck %s
|
|
|
|
.data
|
|
.globl test1_foo
|
|
test1_foo:
|
|
.long 42
|
|
|
|
.globl test1_zed
|
|
test1_zed = test1_foo + 1
|
|
|
|
// CHECK: Symbol {
|
|
// CHECK: Name: test1_zed
|
|
// CHECK-NEXT: Value: 1
|
|
// CHECK-NEXT: Section: .data
|
|
// CHECK-NEXT: BaseType: Null
|
|
// CHECK-NEXT: ComplexType: Null
|
|
// CHECK-NEXT: StorageClass: External
|
|
// CHECK-NEXT: AuxSymbolCount: 0
|
|
// CHECK-NEXT: }
|