[llvm-commits] CVS: llvm/lib/Target/SparcV8/SparcV8InstrInfo.td
Chris Lattner
lattner at cs.uiuc.edu
Sat Dec 17 23:15:28 PST 2005
Changes in directory llvm/lib/Target/SparcV8:
SparcV8InstrInfo.td updated: 1.78 -> 1.79
---
Log message:
remove some unused instructions
---
Diffs of the changes: (+0 -12)
SparcV8InstrInfo.td | 12 ------------
1 files changed, 12 deletions(-)
Index: llvm/lib/Target/SparcV8/SparcV8InstrInfo.td
diff -u llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.78 llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.79
--- llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.78 Sun Dec 18 00:59:57 2005
+++ llvm/lib/Target/SparcV8/SparcV8InstrInfo.td Sun Dec 18 01:15:17 2005
@@ -159,12 +159,6 @@
(ops IntRegs:$dst, MEMri:$addr),
"ld [$addr], $dst",
[(set IntRegs:$dst, (load ADDRri:$addr))]>;
-def LDDrr : F3_1<3, 0b000011,
- (ops IntRegs:$dst, MEMrr:$addr),
- "ldd [$addr], $dst", []>;
-def LDDri : F3_2<3, 0b000011,
- (ops IntRegs:$dst, MEMri:$addr),
- "ldd [$addr], $dst", []>;
// Section B.2 - Load Floating-point Instructions, p. 92
def LDFrr : F3_1<3, 0b100000,
@@ -209,12 +203,6 @@
(ops MEMri:$addr, IntRegs:$src),
"st $src, [$addr]",
[(store IntRegs:$src, ADDRri:$addr)]>;
-def STDrr : F3_1<3, 0b000111,
- (ops MEMrr:$addr, IntRegs:$src),
- "std $src, [$addr]", []>;
-def STDri : F3_2<3, 0b000111,
- (ops MEMri:$addr, IntRegs:$src),
- "std $src, [$addr]", []>;
// Section B.5 - Store Floating-point Instructions, p. 97
def STFrr : F3_1<3, 0b100100,
More information about the llvm-commits
mailing list