1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[stack-safety] Update comment

llvm-svn: 347626
This commit is contained in:
Vitaly Buka 2018-11-27 01:56:44 +00:00
parent c4175726e3
commit 5b6a5822b6

View File

@ -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));