mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
91ec991b45
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). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201029 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
458 B
ArmAsm
19 lines
458 B
ArmAsm
@ Check multiple .fpu directives.
|
|
|
|
@ The later .fpu directive should overwrite the earlier one.
|
|
@ See also: directive-fpu-multiple2.s.
|
|
|
|
@ RUN: llvm-mc -triple arm-eabi -filetype obj %s | llvm-readobj -arm-attributes \
|
|
@ RUN: | FileCheck %s -check-prefix CHECK-ATTR
|
|
|
|
.fpu neon
|
|
.fpu vfpv4
|
|
|
|
@ CHECK-ATTR: FileAttributes {
|
|
@ CHECK-ATTR: Attribute {
|
|
@ CHECK-ATTR: TagName: FP_arch
|
|
@ CHECK-ATTR: Description: VFPv4
|
|
@ CHECK-ATTR: }
|
|
@ CHECK-ATTR: }
|
|
|