summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZISelLowering.cpp
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-09-25 10:29:47 +0000
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-09-25 10:29:47 +0000
commite39a156b921f47a374f091b43205555ee90cd555 (patch)
tree04f843d6ac1662be6c62231a57552cbc3d9a21ad /lib/Target/SystemZ/SystemZISelLowering.cpp
parent9f3f4bf377ac93fd32c8b93ae23378a82ad0f353 (diff)
downloadllvm-e39a156b921f47a374f091b43205555ee90cd555.tar.gz
llvm-e39a156b921f47a374f091b43205555ee90cd555.tar.bz2
llvm-e39a156b921f47a374f091b43205555ee90cd555.tar.xz
[SystemZ] Use subregs for 64-bit truncating stores
Another patch to reduce the duplication of encoding information. Rather than define separate patterns for truncating 64-bit stores, use the 32-bit stores with a subreg. No behavioral changed intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191365 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZISelLowering.cpp')
-rw-r--r--lib/Target/SystemZ/SystemZISelLowering.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/Target/SystemZ/SystemZISelLowering.cpp b/lib/Target/SystemZ/SystemZISelLowering.cpp
index 81d824c7ff..eb3dc49874 100644
--- a/lib/Target/SystemZ/SystemZISelLowering.cpp
+++ b/lib/Target/SystemZ/SystemZISelLowering.cpp
@@ -2872,18 +2872,6 @@ EmitInstrWithCustomInserter(MachineInstr *MI, MachineBasicBlock *MBB) const {
case SystemZ::SelectF128:
return emitSelect(MI, MBB);
- case SystemZ::CondStore8_32:
- return emitCondStore(MI, MBB, SystemZ::STC32, 0, false);
- case SystemZ::CondStore8_32Inv:
- return emitCondStore(MI, MBB, SystemZ::STC32, 0, true);
- case SystemZ::CondStore16_32:
- return emitCondStore(MI, MBB, SystemZ::STH32, 0, false);
- case SystemZ::CondStore16_32Inv:
- return emitCondStore(MI, MBB, SystemZ::STH32, 0, true);
- case SystemZ::CondStore32_32:
- return emitCondStore(MI, MBB, SystemZ::ST32, SystemZ::STOC32, false);
- case SystemZ::CondStore32_32Inv:
- return emitCondStore(MI, MBB, SystemZ::ST32, SystemZ::STOC32, true);
case SystemZ::CondStore8:
return emitCondStore(MI, MBB, SystemZ::STC, 0, false);
case SystemZ::CondStore8Inv: