mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
1855cb5c25
llvm-svn: 214871
27 lines
854 B
ArmAsm
27 lines
854 B
ArmAsm
@ RUN: not llvm-mc -triple=thumbv7m-apple-darwin -show-encoding < %s 2> %t
|
|
@ RUN: FileCheck < %t %s
|
|
@ RUN: not llvm-mc -triple=thumbv6m -show-encoding < %s 2> %t
|
|
@ RUN: FileCheck < %t %s
|
|
.syntax unified
|
|
.globl _func
|
|
|
|
@ Check that the assembler rejects thumb instructions that are not valid
|
|
@ on mclass.
|
|
|
|
@------------------------------------------------------------------------------
|
|
@ BLX (immediate)
|
|
@------------------------------------------------------------------------------
|
|
blx _baz
|
|
|
|
@ CHECK: error: instruction requires: !armv*m
|
|
|
|
@------------------------------------------------------------------------------
|
|
@ SETEND
|
|
@------------------------------------------------------------------------------
|
|
|
|
setend be
|
|
setend le
|
|
|
|
@ CHECK: error: invalid operand for instruction
|
|
@ CHECK: error: invalid operand for instruction
|