summaryrefslogtreecommitdiff
path: root/lib/Target/Sparc/SparcInstrFormats.td
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-12-16 07:10:02 +0000
committerChris Lattner <sabre@nondot.org>2005-12-16 07:10:02 +0000
commitd4f2ab5e0059f8398a7882d6c6be50341641b97b (patch)
tree1326ce1df42d5a4915b2dd903baf36bd98a1347e /lib/Target/Sparc/SparcInstrFormats.td
parent1c4f4356032195f05c715b113b4ee5e2d4909915 (diff)
downloadllvm-d4f2ab5e0059f8398a7882d6c6be50341641b97b.tar.gz
llvm-d4f2ab5e0059f8398a7882d6c6be50341641b97b.tar.bz2
llvm-d4f2ab5e0059f8398a7882d6c6be50341641b97b.tar.xz
Autogenerate asmprinter for F3_2 instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24741 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc/SparcInstrFormats.td')
-rw-r--r--lib/Target/Sparc/SparcInstrFormats.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Sparc/SparcInstrFormats.td b/lib/Target/Sparc/SparcInstrFormats.td
index b63e39148f..e30edce83c 100644
--- a/lib/Target/Sparc/SparcInstrFormats.td
+++ b/lib/Target/Sparc/SparcInstrFormats.td
@@ -73,14 +73,14 @@ class F3_1<bits<2> opVal, bits<6> op3val, dag ops, string asmstr> : F3 {
let Inst{4-0} = rs2;
}
-class F3_2<bits<2> opVal, bits<6> op3val, dag ops, string name> : F3 {
+class F3_2<bits<2> opVal, bits<6> op3val, dag ops, string asmstr> : F3 {
bits<13> simm13;
dag OperandList = ops;
+ let AsmString = asmstr;
let op = opVal;
let op3 = op3val;
- let Name = name;
let Inst{13} = 1; // i field = 1
let Inst{12-0} = simm13;