[X86] Remove special validation for INT immediate operand from AsmParser. Instead...
[oota-llvm.git] / test / MC / X86 / validate-inst-att.s
1 # RUN: not llvm-mc -triple i686 -filetype asm -o /dev/null %s 2>&1 | FileCheck %s
2
3         .text
4         int $65535
5 # CHECK: error: invalid operand for instruction
6 # CHECK:        int $65535
7 # CHECK:            ^
8
9         int $-129
10 # CHECK: error: invalid operand for instruction
11 # CHECK:        int $-129
12 # CHECK:            ^