view test/MC/X86/validate-inst-intel.s @ 121:803732b1fca8

LLVM 5.0
author kono
date Fri, 27 Oct 2017 17:07:41 +0900
parents afa8332a0e37
children
line wrap: on
line source

# 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:            ^