We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a44a340 commit bd511b5Copy full SHA for bd511b5
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -3011,10 +3011,9 @@ void AddressSanitizer::markCatchParametersAsUninteresting(Function &F) {
3011
if (auto *CatchPad = dyn_cast<CatchPadInst>(&I)) {
3012
// Mark the parameters to a catch-block as uninteresting to avoid
3013
// instrumenting them
3014
- for (Value *Operand : CatchPad->arg_operands()) {
+ for (Value *Operand : CatchPad->arg_operands())
3015
if (auto *AI = dyn_cast<AllocaInst>(Operand))
3016
ProcessedAllocas[AI] = false;
3017
- }
3018
}
3019
3020
0 commit comments