From: Chris Lattner Date: Sun, 15 May 2005 01:10:30 +0000 (+0000) Subject: Yes, calltarget is the operand of the day. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0dede079e7c2ab3b39bf3dc6e37039501a1eca07;p=oota-llvm.git Yes, calltarget is the operand of the day. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22040 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index d99773730da..5a6e62e520f 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -191,9 +191,8 @@ let isCall = 1 in def CALL32m : I<0xFF, MRM2m, (ops i32mem:$dst), "call {*}$dst">; } -// calltarget instead of i32imm? let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in - def TAILJMPd : IBr<0xE9, (ops i32imm:$dst), "jmp $dst">; + def TAILJMPd : IBr<0xE9, (ops calltarget:$dst), "jmp $dst">; let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in def TAILJMPr : I<0xFF, MRM4r, (ops R32:$dst), "jmp {*}$dst">; let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in