projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[X86][PKU] Add {RD,WR}PKRU encoding
[oota-llvm.git]
/
test
/
MC
/
X86
/
validate-inst-intel.s
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