blob: fec545e64b0682853137dfad4e92e781170d7989 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
@ 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
|