commit | 677917bfd234da5b67485967657825a899673e38 | [log] [tgz] |
---|---|---|
author | Anton Korobeynikov <asl@math.spbu.ru> | Thu Jul 16 14:33:52 2009 +0000 |
committer | Anton Korobeynikov <asl@math.spbu.ru> | Thu Jul 16 14:33:52 2009 +0000 |
tree | 39abaac4a4842ff93c9f8206ce1ca21eb9d0942b | |
parent | 9fa7deddc88b6ea0206bfc30b873bb448378876e [diff] [blame] |
Handle long-disp stuff more consistently git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76059 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/SystemZ/SystemZInstrInfo.cpp b/lib/Target/SystemZ/SystemZInstrInfo.cpp index 914d333..c54ce53 100644 --- a/lib/Target/SystemZ/SystemZInstrInfo.cpp +++ b/lib/Target/SystemZ/SystemZInstrInfo.cpp
@@ -650,7 +650,8 @@ 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"); } }