mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
91bd110de4
Placed the MC variant diagnostics in the wrong directory accidentally. Move them into their respective architecture specific directories. llvm-svn: 200161
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: ^
|
|
|