mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
1c30aa1d0c
In the case of an invalid FPU name, place the caret at the name rather than FPU directive. llvm-svn: 227595
11 lines
217 B
ArmAsm
11 lines
217 B
ArmAsm
@ RUN: not llvm-mc -triple armv7 -filetype asm -o /dev/null %s 2>&1 \
|
|
@ RUN: | FileCheck %s -strict-whitespace
|
|
|
|
.text
|
|
.thumb
|
|
|
|
.fpu invalid
|
|
@ CHECK: error: Unknown FPU name
|
|
@ CHECK: .fpu invalid
|
|
@ CHECK: ^
|