From: Chandler Carruth Date: Fri, 30 Jan 2015 13:30:43 +0000 (+0000) Subject: Fix a warning introduced by r227557 due to a default label in a fully X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2ec788d43fb98a3426645503ce03c02b7bcc9c40;p=oota-llvm.git Fix a warning introduced by r227557 due to a default label in a fully covering switch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227575 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index cec6989cab4..b722838b3f0 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -744,7 +744,6 @@ public: return B.CreateGEP(StartValue, Index); case IK_NoInduction: - default: return nullptr; } }