[llvm-commits] CVS: llvm/lib/Target/Sparc/SparcV9_F4.td
Misha Brukman
brukman at cs.uiuc.edu
Wed Jul 16 15:28:01 PDT 2003
Changes in directory llvm/lib/Target/Sparc:
SparcV9_F4.td updated: 1.6 -> 1.7
---
Log message:
The name should really be `simm11' to follow the naming convention, but this has
no change in functionality.
---
Diffs of the changes:
Index: llvm/lib/Target/Sparc/SparcV9_F4.td
diff -u llvm/lib/Target/Sparc/SparcV9_F4.td:1.6 llvm/lib/Target/Sparc/SparcV9_F4.td:1.7
--- llvm/lib/Target/Sparc/SparcV9_F4.td:1.6 Wed Jul 2 14:37:48 2003
+++ llvm/lib/Target/Sparc/SparcV9_F4.td Wed Jul 16 15:27:44 2003
@@ -92,7 +92,7 @@
class F4_4<bits<2> opVal, bits<6> op3Val, bits<4> condVal,
string name> : F4_condcc {
- bits<11> sim11;
+ bits<11> simm11;
bits<5> rd;
set op = opVal;
@@ -101,7 +101,7 @@
set Name = name;
set Inst{29-25} = rd;
set Inst{13} = 1; // i bit
- set Inst{10-0} = sim11;
+ set Inst{10-0} = simm11;
}
// FIXME: class F4_5
More information about the llvm-commits
mailing list