[SeparateConstOffsetFromGEP] Fixed a bug related to unsigned modulo
[oota-llvm.git] / test / MC / ARM / directive-eabi_attribute-overwrite.s
1 @ RUN: llvm-mc -triple armv7-eabi -filetype obj -o - %s \
2 @ RUN:   | llvm-readobj -arm-attributes | FileCheck %s -check-prefix CHECK-ATTR
3
4         .syntax unified
5         .thumb
6
7         .eabi_attribute Tag_compatibility, 1
8         .eabi_attribute Tag_compatibility, 1, "aeabi"
9
10 @ CHECK-ATTR: FileAttributes {
11 @ CHECK-ATTR:   Attribute {
12 @ CHECK-ATTR:     Value: 1, AEABI
13 @ CHECK-ATTR:     TagName: compatibility
14 @ CHECK-ATTR:     Description: AEABI Conformant
15 @ CHECK-ATTR:   }
16 @ CHECK-ATTR: }
17