diff options
-rw-r--r-- | lib/Target/Alpha/AlphaInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaInstrInfo.td b/lib/Target/Alpha/AlphaInstrInfo.td index 531b7fa3cd..28f3d1e33b 100644 --- a/lib/Target/Alpha/AlphaInstrInfo.td +++ b/lib/Target/Alpha/AlphaInstrInfo.td @@ -861,6 +861,7 @@ def FBNE : br_fcc<0x36, "fbne">; //An ugly trick to get the opcode as an imm I can use def immBRCond : SDNodeXForm<imm, [{ switch((uint64_t)N->getZExtValue()) { + default: assert(0 && "Unknown branch type"); case 0: return getI64Imm(Alpha::BEQ); case 1: return getI64Imm(Alpha::BNE); case 2: return getI64Imm(Alpha::BGE); @@ -875,7 +876,6 @@ def immBRCond : SDNodeXForm<imm, [{ case 23: return getI64Imm(Alpha::FBGT); case 24: return getI64Imm(Alpha::FBLE); case 25: return getI64Imm(Alpha::FBLT); - default: assert(0 && "Unknown branch type"); } }]>; |