mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
6cd76408bf
This patch updates tests using llvm-readobj and llvm-readelf, because soon reading from stdin will be achievable only via a '-' as described here: https://bugs.llvm.org/show_bug.cgi?id=46400. Patch with changes to llvm-readobj behavior is here: https://reviews.llvm.org/D83704 Differential Revision: https://reviews.llvm.org/D83912 Reviewed by: jhenderson, MaskRay, grimar
24 lines
462 B
ArmAsm
24 lines
462 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux < %s | llvm-readobj -r --symbols - | FileCheck %s
|
|
|
|
// CHECK: Section {{.*}} .rela.text {
|
|
// CHECK-NEXT: 0x0 R_X86_64_32 d 0x0
|
|
// CHECK-NEXT: }
|
|
|
|
// CHECK: Symbol {
|
|
// CHECK: Name: d2
|
|
// CHECK-NEXT: Value: 0x2A
|
|
|
|
a:
|
|
b = a
|
|
c = a
|
|
d = a
|
|
.weak d
|
|
.long d + (b - c)
|
|
|
|
|
|
a2:
|
|
.weak b2
|
|
b2 = a2
|
|
c2 = b2 - a2
|
|
d2 = b2 - a2 + 42
|