mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
283b40e4d4
Placed the MC variant diagnostics in the wrong directory accidentally. Move them into their respective architecture specific directories. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200161 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
291 B
ArmAsm
14 lines
291 B
ArmAsm
@ RUN: not llvm-mc -triple armv7-linux-eabi -filetype asm -o /dev/null 2>&1 %s \
|
|
@ RUN: | FileCheck %s
|
|
|
|
.arch armv7
|
|
|
|
.type invalid_variant,%function
|
|
invalid_variant:
|
|
bx target(invalid)
|
|
|
|
@ CHECK: error: invalid variant 'invalid'
|
|
@ CHECK: bx target(invalid)
|
|
@ CHECK: ^
|
|
|