diff options
| author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 14:33:52 +0000 |
|---|---|---|
| committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 14:33:52 +0000 |
| commit | 9de2848fac8806e311531fccf112b7936b23de31 (patch) | |
| tree | 39abaac4a4842ff93c9f8206ce1ca21eb9d0942b /lib/Target/SystemZ/SystemZInstrInfo.cpp | |
| parent | 74e2dc446c02053bf1e17532707ca56f47453487 (diff) | |
Handle long-disp stuff more consistently
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76059 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, 2 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZInstrInfo.cpp b/lib/Target/SystemZ/SystemZInstrInfo.cpp index 914d333c34..c54ce530c0 100644 --- a/lib/Target/SystemZ/SystemZInstrInfo.cpp +++ b/lib/Target/SystemZ/SystemZInstrInfo.cpp @@ -650,7 +650,8 @@ SystemZInstrInfo::getLongDispOpc(unsigned Opc) const { case SystemZ::FMOV64mr: return get(SystemZ::FMOV64mry); case SystemZ::FMOV32rm: return get(SystemZ::FMOV32rmy); case SystemZ::FMOV64rm: return get(SystemZ::FMOV64rmy); - default: return get(Opc); + default: + assert(0 && "Don't have long disp version of this instruction"); } } |
