diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-12-12 06:42:41 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-12-12 06:42:41 +0000 |
commit | 02d8bf1f24c25a0db1f43789958c28975903ccb7 (patch) | |
tree | d7882cd96c81a77d535d5a65b03da325eef84534 /lib | |
parent | b29de8ba0044548f0259b5eca180e07bdba992bc (diff) | |
download | external_llvm-02d8bf1f24c25a0db1f43789958c28975903ccb7.zip external_llvm-02d8bf1f24c25a0db1f43789958c28975903ccb7.tar.gz external_llvm-02d8bf1f24c25a0db1f43789958c28975903ccb7.tar.bz2 |
Merging r197100:
------------------------------------------------------------------------
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@197130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index 2bd3aad..a4370ab 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -613,20 +613,6 @@ 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> { |