From 483c54b811badbfcaa040cdb6d84cf564afe75cf Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Thu, 5 Jul 2012 10:14:33 +0000 Subject: [PATCH] All cases are covered, no need for a default. This deals with the corresponding clang warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159742 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 2aed0848002..891d401201f 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -2394,7 +2394,6 @@ TargetLowering::SimplifySetCC(EVT VT, SDValue N0, SDValue N1, // constant being emitted. uint64_t EqVal; switch (getBooleanContents(N0.getValueType().isVector())) { - default: llvm_unreachable("Unknown boolean contents!"); case UndefinedBooleanContent: case ZeroOrOneBooleanContent: EqVal = ISD::isTrueWhenEqual(Cond); -- 2.34.1