From 79391ee0f295aaac96181d5937c07b431c1f349e Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Thu, 7 Apr 2016 16:33:25 +0000 Subject: [PATCH] [SystemZ] Fix build break from r265689 Fix build error seen on some build bots due to: error: default label in switch which covers all enumeration values llvm-svn: 265693 --- llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp b/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp index 0dc32b5..80393a6 100644 --- a/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp +++ b/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp @@ -1334,9 +1334,8 @@ unsigned SystemZInstrInfo::getCompareAndBranch(unsigned Opcode, default: return 0; } - default: - return 0; } + return 0; } void SystemZInstrInfo::loadImmediate(MachineBasicBlock &MBB, -- 2.7.4