From: Andrew Kaylor Date: Wed, 20 May 2015 23:28:03 +0000 (+0000) Subject: Fix build warning X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=008a1efecf4bc7f142dda936f79783c69524776e;p=oota-llvm.git Fix build warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237855 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp b/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp index 636ed91bece..7b5b8c4eabc 100644 --- a/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp +++ b/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp @@ -378,7 +378,7 @@ void WinEHNumbering::createTryBlockMapEntry(int TryLow, int TryHigh, auto E = FuncInfo.TryBlockMap.end(); for ( ; I != E; ++I) { auto &Entry = *I; - if (Entry.HandlerArray.size() != NumHandlers) + if (Entry.HandlerArray.size() != (size_t)NumHandlers) continue; int N; for (N = 0; N < NumHandlers; ++N) {