Skip to content

Commit 112f078

Browse files
Update llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
Co-authored-by: Antonio Frighetto <[email protected]>
1 parent 0dec61a commit 112f078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3010,7 +3010,7 @@ void AddressSanitizer::markCatchParametersAsUninteresting(Function &F) {
30103010
for (Instruction &I : BB) {
30113011
if (auto *CatchPad = dyn_cast<CatchPadInst>(&I)) {
30123012
// Mark the parameters to a catch-block as uninteresting to avoid
3013-
// instrumenting them
3013+
// instrumenting them.
30143014
for (Value *Operand : CatchPad->arg_operands())
30153015
if (auto *AI = dyn_cast<AllocaInst>(Operand))
30163016
ProcessedAllocas[AI] = false;

0 commit comments

Comments
 (0)