mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
3d83eb48ac
An improper qualifier would result in a superfluous error due to the parser not consuming the remainder of the statement. Simply consume the remainder of the statement to avoid the error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199035 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
381 B
ArmAsm
16 lines
381 B
ArmAsm
@ RUN: not llvm-mc -triple armv7-eabi -filetype asm -o - %s 2>&1 | FileCheck %s
|
|
|
|
.syntax unified
|
|
|
|
.type function,%function
|
|
function:
|
|
ldr.n r0, [r0]
|
|
|
|
@ CHECK: error: instruction with .n (narrow) qualifier not allowed in arm mode
|
|
@ CHECK: ldr.n r0, [r0]
|
|
@ CHECK: ^
|
|
@ CHECK-NOT: error: unexpected token in operand
|
|
@ CHECK-NOT: ldr.n r0, [r0]
|
|
@ CHECK-NOT: ^
|
|
|