Home | History | Annotate | Download | only in ARM
      1 @ Check multiple .fpu directives.
      2 
      3 @ The later .fpu directive should overwrite the earlier one.
      4 @ See also: directive-fpu-multiple2.s.
      5 
      6 @ RUN: llvm-mc -triple arm-eabi -filetype obj %s | llvm-readobj -arm-attributes \
      7 @ RUN:   | FileCheck %s -check-prefix CHECK-ATTR
      8 
      9 	.fpu neon
     10 	.fpu vfpv4
     11 
     12 @ CHECK-ATTR: FileAttributes {
     13 @ CHECK-ATTR:   Attribute {
     14 @ CHECK-ATTR:     TagName: FP_arch
     15 @ CHECK-ATTR:     Description: VFPv4
     16 @ CHECK-ATTR:   }
     17 @ CHECK-ATTR: }
     18 
     19