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 0dec61a commit 112f078Copy full SHA for 112f078
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -3010,7 +3010,7 @@ void AddressSanitizer::markCatchParametersAsUninteresting(Function &F) {
3010
for (Instruction &I : BB) {
3011
if (auto *CatchPad = dyn_cast<CatchPadInst>(&I)) {
3012
// Mark the parameters to a catch-block as uninteresting to avoid
3013
- // instrumenting them
+ // instrumenting them.
3014
for (Value *Operand : CatchPad->arg_operands())
3015
if (auto *AI = dyn_cast<AllocaInst>(Operand))
3016
ProcessedAllocas[AI] = false;
0 commit comments