31 lines · plain
1@ Test the .arch directive for armv6-m2 3@ This test case will check the default .ARM.attributes value for the4@ armv6-m architecture.5 6@ RUN: llvm-mc -triple arm-eabi -filetype asm %s \7@ RUN: | FileCheck %s -check-prefix CHECK-ASM8@ RUN: llvm-mc -triple arm-eabi -filetype obj %s \9@ RUN: | llvm-readobj --arch-specific - | FileCheck %s -check-prefix CHECK-ATTR10 11 .syntax unified12 .arch armv6-m13 14@ CHECK-ASM: .arch armv6-m15 16@ CHECK-ATTR: FileAttributes {17@ CHECK-ATTR: Attribute {18@ CHECK-ATTR: TagName: CPU_name19@ CHECK-ATTR: Value: 6-M20@ CHECK-ATTR: }21@ CHECK-ATTR: Attribute {22@ CHECK-ATTR: TagName: CPU_arch23@ CHECK-ATTR: Description: ARM v6-M24@ CHECK-ATTR: }25@ CHECK-ATTR: Attribute {26@ CHECK-ATTR: TagName: THUMB_ISA_use27@ CHECK-ATTR: Description: Thumb-128@ CHECK-ATTR: }29@ CHECK-ATTR: }30 31