1 # RUN: not llvm-mc -x86-asm-syntax intel -triple i686 -filetype asm -o /dev/null %s 2>&1 \ 2 # RUN: | FileCheck %s 3 4 .text 5 int 65535 6 # CHECK: error: invalid operand for instruction 7 # CHECK: int 65535 8 # CHECK: ^ 9 10 .text 11 int -129 12 # CHECK: error: invalid operand for instruction 13 # CHECK: int -129 14 # CHECK: ^ 15 16