mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Intel syntax: For now, disable ambiguous JMP64pcrel32 for intel syntax.
llvm-svn: 148569
This commit is contained in:
parent
793fa215cb
commit
e836c95860
@ -43,8 +43,10 @@ let isBarrier = 1, isBranch = 1, isTerminator = 1 in {
|
||||
"jmp\t$dst", [(br bb:$dst)]>;
|
||||
def JMP_1 : Ii8PCRel<0xEB, RawFrm, (outs), (ins brtarget8:$dst),
|
||||
"jmp\t$dst", []>;
|
||||
// FIXME : Intel syntax for JMP64pcrel32 such that it is not ambiguious
|
||||
// with JMP_1.
|
||||
def JMP64pcrel32 : I<0xE9, RawFrm, (outs), (ins brtarget:$dst),
|
||||
"jmp{q}\t$dst", []>;
|
||||
"jmpq\t$dst", []>;
|
||||
}
|
||||
|
||||
// Conditional Branches.
|
||||
|
@ -31,4 +31,7 @@
|
||||
// CHECK: encoding: [0x48,0x83,0xc0,0xf4]
|
||||
add rax, -12
|
||||
|
||||
|
||||
LBB0_3:
|
||||
// CHECK: encoding: [0xeb,A]
|
||||
jmp LBB0_3
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user