brintos

brintos / llvm-project-archived public Read only

0
0
Text · 514 B · 8aef5fb Raw
23 lines · plain
1@ RUN: not llvm-mc -triple armv7-eabi -filetype asm -o /dev/null %s 2>&1 \2@ RUN:    | FileCheck %s -check-prefix CHECK-EABI3 4@ NOTE: this test ensures that both forms are accepted for MachO5@ RUN: llvm-mc -triple armv7-darwin -filetype asm -o /dev/null %s6 7	.syntax unified8 9	.thumb_func10no_suffix:11	bx lr12 13// CHECK-EABI: :[[#@LINE+3]]:14: error: expected newline14// CHECK-EABI: 	.thumb_func suffix15// CHECK-EABI:              ^16	.thumb_func suffix17suffix:18	bx lr19 20 21// CHECK-EABI-NOT: error: invalid instruction22 23