[llvm-commits] CVS: llvm/lib/Target/SparcV8/SparcV8InstrInfo.td

Chris Lattner lattner at cs.uiuc.edu
Sun Dec 18 17:23:05 PST 2005



Changes in directory llvm/lib/Target/SparcV8:

SparcV8InstrInfo.td updated: 1.89 -> 1.90
---
Log message:

Fix syntax for indirect calls.  This fixes Olden/mst


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

 SparcV8InstrInfo.td |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/SparcV8/SparcV8InstrInfo.td
diff -u llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.89 llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.90
--- llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.89	Sun Dec 18 18:53:02 2005
+++ llvm/lib/Target/SparcV8/SparcV8InstrInfo.td	Sun Dec 18 19:22:53 2005
@@ -570,11 +570,11 @@
   // indirect calls
   def JMPLrr : F3_1<2, 0b111000,
                     (ops MEMrr:$ptr),
-                    "jmpl $ptr",
+                    "call $ptr",
                     [(set ICC/*bogus*/, (call  ADDRrr:$ptr, ICC/*bogus*/))]>;
   def JMPLri : F3_2<2, 0b111000,
                     (ops MEMri:$ptr),
-                    "jmpl $ptr",
+                    "call $ptr",
                     [(set ICC/*bogus*/, (call  ADDRri:$ptr, ICC/*bogus*/))]>;
 }
 






More information about the llvm-commits mailing list