summaryrefslogtreecommitdiff
path: root/test/MC/ARM/directive-fpu-multiple.s
blob: de2baaf27165bdb8a2ab5a11c1f314f638b7f36d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@ 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: }