[llvm-commits] CVS: llvm/lib/Target/X86/X86InstrInfo.td

Chris Lattner lattner at cs.uiuc.edu
Sat May 14 18:10:47 PDT 2005



Changes in directory llvm/lib/Target/X86:

X86InstrInfo.td updated: 1.125 -> 1.126
---
Log message:

Yes, calltarget is the operand of the day.


---
Diffs of the changes:  (+1 -2)

 X86InstrInfo.td |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)


Index: llvm/lib/Target/X86/X86InstrInfo.td
diff -u llvm/lib/Target/X86/X86InstrInfo.td:1.125 llvm/lib/Target/X86/X86InstrInfo.td:1.126
--- llvm/lib/Target/X86/X86InstrInfo.td:1.125	Sat May 14 18:35:21 2005
+++ llvm/lib/Target/X86/X86InstrInfo.td	Sat May 14 20:10:30 2005
@@ -191,9 +191,8 @@
     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






More information about the llvm-commits mailing list