summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZInstrInfo.cpp
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-10-01 13:18:56 +0000
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-10-01 13:18:56 +0000
commit645d250b84fe0d097e7813b980ae58daeca2c2e6 (patch)
tree546e722390d56140fee454cc642a0d234d85291c /lib/Target/SystemZ/SystemZInstrInfo.cpp
parent2e1625475fab156b98204fa73c168ca4a828b775 (diff)
downloadllvm-645d250b84fe0d097e7813b980ae58daeca2c2e6.tar.gz
llvm-645d250b84fe0d097e7813b980ae58daeca2c2e6.tar.bz2
llvm-645d250b84fe0d097e7813b980ae58daeca2c2e6.tar.xz
[SystemZ] Allow integer insertions with a high-word destination
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191753 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZInstrInfo.cpp')
-rw-r--r--lib/Target/SystemZ/SystemZInstrInfo.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Target/SystemZ/SystemZInstrInfo.cpp b/lib/Target/SystemZ/SystemZInstrInfo.cpp
index 3abecf684d..90de3daed1 100644
--- a/lib/Target/SystemZ/SystemZInstrInfo.cpp
+++ b/lib/Target/SystemZ/SystemZInstrInfo.cpp
@@ -881,6 +881,14 @@ SystemZInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
expandRIPseudo(MI, SystemZ::IILF, SystemZ::IIHF, false);
return true;
+ case SystemZ::IILMux:
+ expandRIPseudo(MI, SystemZ::IILL, SystemZ::IIHL, false);
+ return true;
+
+ case SystemZ::IIHMux:
+ expandRIPseudo(MI, SystemZ::IILH, SystemZ::IIHH, false);
+ return true;
+
case SystemZ::ADJDYNALLOC:
splitAdjDynAlloc(MI);
return true;