diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-12-12 06:44:57 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-12-12 06:44:57 +0000 |
commit | 593c23caad07bd8b4d042db897b7d9fed7b4f213 (patch) | |
tree | e8233125cab5128c2e57fadd8f12a0d5473cf887 /lib | |
parent | 02d8bf1f24c25a0db1f43789958c28975903ccb7 (diff) | |
download | external_llvm-593c23caad07bd8b4d042db897b7d9fed7b4f213.zip external_llvm-593c23caad07bd8b4d042db897b7d9fed7b4f213.tar.gz external_llvm-593c23caad07bd8b4d042db897b7d9fed7b4f213.tar.bz2 |
Merging r-197100:
------------------------------------------------------------------------
r197100 | hfinkel | 2013-12-11 16:23:29 -0800 (Wed, 11 Dec 2013) | 1 line
Remove unused multiclass from PPCInstrInfo.td
------------------------------------------------------------------------
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@197131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index a4370ab..2bd3aad 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -613,6 +613,20 @@ multiclass XForm_6rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, } } +multiclass XForm_10r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, + string asmbase, string asmstr, InstrItinClass itin, + list<dag> pattern> { + let BaseName = asmbase in { + def NAME : XForm_10<opcode, xo, OOL, IOL, + !strconcat(asmbase, !strconcat(" ", asmstr)), itin, + pattern>, RecFormRel; + let Defs = [CR0] in + def o : XForm_10<opcode, xo, OOL, IOL, + !strconcat(asmbase, !strconcat(". ", asmstr)), itin, + []>, isDOT, RecFormRel; + } +} + multiclass XForm_10rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL, string asmbase, string asmstr, InstrItinClass itin, list<dag> pattern> { |