diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 14:10:17 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 14:10:17 +0000 |
commit | 1ed1e3ecd489e469a5d9a3727139cecb8615bb9c (patch) | |
tree | 20d9cddfb8a465fdfdb97ecbf75fd980ca20bdf4 /lib/Target/SystemZ/SystemZInstrInfo.cpp | |
parent | 5a11e02fbd7f0df98338c75cd468c42d29ef16e4 (diff) | |
download | external_llvm-1ed1e3ecd489e469a5d9a3727139cecb8615bb9c.zip external_llvm-1ed1e3ecd489e469a5d9a3727139cecb8615bb9c.tar.gz external_llvm-1ed1e3ecd489e469a5d9a3727139cecb8615bb9c.tar.bz2 |
Consolidate reg-imm / reg-reg-imm address mode selection logic in one place.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75990 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZInstrInfo.cpp')
-rw-r--r-- | lib/Target/SystemZ/SystemZInstrInfo.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/SystemZ/SystemZInstrInfo.cpp b/lib/Target/SystemZ/SystemZInstrInfo.cpp index 82018e8..c82aa0b 100644 --- a/lib/Target/SystemZ/SystemZInstrInfo.cpp +++ b/lib/Target/SystemZ/SystemZInstrInfo.cpp @@ -351,6 +351,9 @@ SystemZInstrInfo::getLongDispOpc(unsigned Opc) const { case SystemZ::MOV64m32r: Opc = SystemZ::MOV64m32ry; break; + case SystemZ::MOV8mi: + Opc = SystemZ::MOV8miy; + break; case SystemZ::MUL32rm: Opc = SystemZ::MUL32rmy; break; |