1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/MC/X86/validate-inst-intel.s
2015-10-11 18:27:24 +00:00

16 lines
331 B
ArmAsm

# RUN: not llvm-mc -x86-asm-syntax intel -triple i686 -filetype asm -o /dev/null %s 2>&1 \
# RUN: | FileCheck %s
.text
int 65535
# CHECK: error: invalid operand for instruction
# CHECK: int 65535
# CHECK: ^
.text
int -129
# CHECK: error: invalid operand for instruction
# CHECK: int -129
# CHECK: ^