mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
9112a48c7b
D68110 added --arch-specific (supported by GNU readelf) and made --arm-attributes an alias for it. The tests were later migrated to use --arch-specific. Note, llvm-readelf --arch-specific currently just uses llvm-readobj style output for ARM attributes. The readelf-style output is not implemented. Reviewed By: compnerd, kongyi, rupprecht Differential Revision: https://reviews.llvm.org/D68196 llvm-svn: 373291
11 lines
583 B
ArmAsm
11 lines
583 B
ArmAsm
@ RUN: llvm-mc -triple armv7-elf -filetype asm -o - %s | FileCheck %s
|
|
@ RUN: llvm-mc -triple armv7-eabi -filetype obj -o - %s \
|
|
@ RUN: | llvm-readobj --arch-specific - | FileCheck %s --check-prefix=CHECK-OBJ
|
|
@ RUN: llvm-mc -triple armv7-eabi -filetype obj -o - %s \
|
|
@ RUN: | llvm-readobj -A - | FileCheck %s --check-prefix=CHECK-OBJ
|
|
.eabi_attribute Tag_conformance, "A.long--non numeric oddity...!!"
|
|
@CHECK: .eabi_attribute 67, "A.long--non numeric oddity...!!"
|
|
@CHECK-OBJ: Tag: 67
|
|
@CHECK-OBJ-NEXT: TagName: conformance
|
|
@CHECK-OBJ-NEXT: Value: A.long--non numeric oddity...!!
|