mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
832f6bfd62
This makes the tests more readable by using the -arm-attributes decoding support in llvm-readobj since that is now available. Change the invocation commands to be similar to other test and use a more precise triple (the tests only require ARM EABI support). llvm-svn: 201029
18 lines
468 B
ArmAsm
18 lines
468 B
ArmAsm
@ RUN: llvm-mc -triple armv7-eabi -filetype obj -o - %s \
|
|
@ RUN: | llvm-readobj -arm-attributes | FileCheck %s -check-prefix CHECK-ATTR
|
|
|
|
.syntax unified
|
|
.thumb
|
|
|
|
.eabi_attribute Tag_compatibility, 1
|
|
.eabi_attribute Tag_compatibility, 1, "aeabi"
|
|
|
|
@ CHECK-ATTR: FileAttributes {
|
|
@ CHECK-ATTR: Attribute {
|
|
@ CHECK-ATTR: Value: 1, AEABI
|
|
@ CHECK-ATTR: TagName: compatibility
|
|
@ CHECK-ATTR: Description: AEABI Conformant
|
|
@ CHECK-ATTR: }
|
|
@ CHECK-ATTR: }
|
|
|