[llvm] r347626 - [stack-safety] Update comment
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 26 17:56:44 PST 2018
Author: vitalybuka
Date: Mon Nov 26 17:56:44 2018
New Revision: 347626
URL: http://llvm.org/viewvc/llvm-project?rev=347626&view=rev
Log:
[stack-safety] Update comment
Modified:
llvm/trunk/lib/Analysis/StackSafetyAnalysis.cpp
Modified: llvm/trunk/lib/Analysis/StackSafetyAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/StackSafetyAnalysis.cpp?rev=347626&r1=347625&r2=347626&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/StackSafetyAnalysis.cpp (original)
+++ llvm/trunk/lib/Analysis/StackSafetyAnalysis.cpp Mon Nov 26 17:56:44 2018
@@ -432,7 +432,7 @@ StackSafetyDataFlowAnalysis::StackSafety
: 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));
More information about the llvm-commits
mailing list