mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
9492802a37
In the case of an invalid FPU name, place the caret at the name rather than FPU directive. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227595 91177308-0d34-0410-b5e6-96231b3b80d8
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: ^
|