From 3e11988c42338751f3712b51a6f4d64362719711 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Fri, 17 Jul 2009 12:25:14 +0000 Subject: [PATCH] Avoid a compiler warning when assertions are turned off. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76176 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SystemZ/SystemZInstrInfo.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Target/SystemZ/SystemZInstrInfo.cpp b/lib/Target/SystemZ/SystemZInstrInfo.cpp index b184a982bf6..27bd47dc08b 100644 --- a/lib/Target/SystemZ/SystemZInstrInfo.cpp +++ b/lib/Target/SystemZ/SystemZInstrInfo.cpp @@ -648,6 +648,8 @@ SystemZInstrInfo::getOppositeCondition(SystemZCC::CondCodes CC) const { const TargetInstrDesc& SystemZInstrInfo::getLongDispOpc(unsigned Opc) const { switch (Opc) { + default: + assert(0 && "Don't have long disp version of this instruction"); case SystemZ::MOV32mr: return get(SystemZ::MOV32mry); case SystemZ::MOV32rm: return get(SystemZ::MOV32rmy); case SystemZ::MOVSX32rm16: return get(SystemZ::MOVSX32rm16y); @@ -666,8 +668,5 @@ SystemZInstrInfo::getLongDispOpc(unsigned Opc) const { case SystemZ::FMOV64rm: return get(SystemZ::FMOV64rmy); case SystemZ::MOV64Pmr: return get(SystemZ::MOV64Pmry); case SystemZ::MOV64Prm: return get(SystemZ::MOV64Prmy); - default: - assert(0 && "Don't have long disp version of this instruction"); } } - -- 2.34.1