Displaying 1 result from an estimated 1 matches for "booltointmap".
2016 Mar 19
2
Should we enable -Wrange-loop-analysis? (Was: [llvm] r261524 - Fix some abuse of auto...)
...if (!PromotablePHINodes.count(P))
> return false;
> @@ -214,7 +214,7 @@ class PPCBoolRetToInt : public FunctionP
> ++NumBoolCallPromotion;
> ++NumBoolToIntPromotion;
>
> - for (const auto &V : Defs)
> + for (Value *V : Defs)
> if (!BoolToIntMap.count(V))
> BoolToIntMap[V] = translate(V);
>
>
> Modified: llvm/trunk/lib/Transforms/Utils/MemorySSA.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/MemorySSA.cpp?rev=261524&r1=261523&r2=261524&view=diff
> ====================...