mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
1679d0d3c2
The int instruction takes as an operand an 8-bit immediate value. Validate that the input is valid rather than silently truncating the value. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225941 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
235 B
ArmAsm
10 lines
235 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: interrupt vector must be in range [0-255]
|
|
# CHECK: int 65535
|
|
# CHECK: ^
|
|
|