Changes in directory llvm/lib/Target/X86:

X86InstrInfo.td updated: 1.180 -> 1.181
---
Log message:

Oops. Accidentally deleted RET pattern. It's still needed for return void;


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

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


Index: llvm/lib/Target/X86/X86InstrInfo.td
diff -u llvm/lib/Target/X86/X86InstrInfo.td:1.180 
llvm/lib/Target/X86/X86InstrInfo.td:1.181
--- llvm/lib/Target/X86/X86InstrInfo.td:1.180   Wed Dec 21 14:21:51 2005
+++ llvm/lib/Target/X86/X86InstrInfo.td Wed Dec 21 16:22:16 2005
@@ -290,7 +290,7 @@
 
 // Return instructions.
 let isTerminator = 1, isReturn = 1, isBarrier = 1, hasCtrlDep = 1 in
-  def RET : I<0xC3, RawFrm, (ops), "ret", []>;
+  def RET : I<0xC3, RawFrm, (ops), "ret", [(ret)]>;
 let isTerminator = 1, isReturn = 1, isBarrier = 1, hasCtrlDep = 1 in
   def RETI : Ii16<0xC2, RawFrm, (ops i16imm:$amt), "ret $amt", []>;
 



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to