Home | History | Annotate | Download | only in ARM
      1 @ RUN: not llvm-mc %s -triple armv7-linux-gnueabi -filetype asm -o - 2>&1 \
      2 @ RUN:   | FileCheck -check-prefix CHECK-ERROR %s
      3 
      4 	.syntax unified
      5 	.arm
      6 
      7 	.align 2
      8 	.global suffixes_invalid_in_arm
      9 	.type suffixes_invalid_in_arm,%function
     10 suffixes_invalid_in_arm:
     11 	.inst.n 2
     12 @ CHECK-ERROR: width suffixes are invalid in ARM mode
     13 	.inst.w 4
     14 @ CHECK-ERROR: width suffixes are invalid in ARM mode
     15 
     16