2014-02-08 23:17:02 +00:00
|
|
|
@ RUN: llvm-mc -triple armv7-eabi -filetype obj -o - %s \
|
|
|
|
@ RUN: | llvm-readobj -arm-attributes | FileCheck %s -check-prefix CHECK-ATTR
|
2014-01-19 08:25:41 +00:00
|
|
|
|
|
|
|
.syntax unified
|
|
|
|
.thumb
|
2014-11-27 12:13:56 +00:00
|
|
|
@ FIXME: The next directive is not correct, Tag_compatibility isn't getting parsed correctly.
|
2014-01-19 08:25:41 +00:00
|
|
|
.eabi_attribute Tag_compatibility, 1
|
|
|
|
.eabi_attribute Tag_compatibility, 1, "aeabi"
|
|
|
|
|
2014-02-08 23:17:02 +00:00
|
|
|
@ CHECK-ATTR: FileAttributes {
|
|
|
|
@ CHECK-ATTR: Attribute {
|
2014-11-27 12:13:56 +00:00
|
|
|
@ CHECK-ATTR: Value: 1, aeabi
|
2014-02-08 23:17:02 +00:00
|
|
|
@ CHECK-ATTR: TagName: compatibility
|
|
|
|
@ CHECK-ATTR: Description: AEABI Conformant
|
|
|
|
@ CHECK-ATTR: }
|
|
|
|
@ CHECK-ATTR: }
|
2014-01-19 08:25:41 +00:00
|
|
|
|