diff options
author | Pete Cooper <peter_cooper@apple.com> | 2015-05-12 20:05:31 +0000 |
---|---|---|
committer | Pete Cooper <peter_cooper@apple.com> | 2015-05-12 20:05:31 +0000 |
commit | 833f34d837eca1e11370fbdea0bcbae10fee70b7 (patch) | |
tree | 715708db84c3689da9353f39f85088f86359bbe1 /llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | |
parent | 26b7aa020bdcabd10ba1c81226327007321aeb89 (diff) | |
download | bcm5719-llvm-833f34d837eca1e11370fbdea0bcbae10fee70b7.tar.gz bcm5719-llvm-833f34d837eca1e11370fbdea0bcbae10fee70b7.zip |
Convert PHI getIncomingValue() to foreach over incoming_values(). NFC.
We already had a method to iterate over all the incoming values of a PHI. This just changes all eligible code to use it.
Ineligible code included anything which cared about the index, or was also trying to get the i'th incoming BB.
llvm-svn: 237169
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index e368a95e3ec..4bea85493ca 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -1940,8 +1940,7 @@ AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) { if (CastInst *CI = dyn_cast<CastInst>(V)) Res = findAllocaForValue(CI->getOperand(0)); else if (PHINode *PN = dyn_cast<PHINode>(V)) { - for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { - Value *IncValue = PN->getIncomingValue(i); + for (Value *IncValue : PN->incoming_values()) { // Allow self-referencing phi-nodes. if (IncValue == PN) continue; AllocaInst *IncValueAI = findAllocaForValue(IncValue); |