diff --git a/llvm/lib/Analysis/StackSafetyAnalysis.cpp b/llvm/lib/Analysis/StackSafetyAnalysis.cpp index 97fc96cafada..49d9b3f57c62 100644 --- a/llvm/lib/Analysis/StackSafetyAnalysis.cpp +++ b/llvm/lib/Analysis/StackSafetyAnalysis.cpp @@ -432,7 +432,7 @@ StackSafetyDataFlowAnalysis::StackSafetyDataFlowAnalysis( : PointerSize(M.getDataLayout().getPointerSizeInBits()), UnknownRange(PointerSize, true) { // Without ThinLTO, run the local analysis for every function in the TU and - // then run the DFA and annotate allocas + // then run the DFA. for (auto &F : M.functions()) if (!F.isDeclaration()) Functions.emplace(&F, FI(F));