Skip to content

Commit

Permalink
[stack-safety] Fix build on gcc 5.4
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@347624 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
vitalybuka committed Nov 27, 2018
1 parent 725ed2f commit 61eaf01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Analysis/StackSafetyAnalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ StackSafetyDataFlowAnalysis::StackSafetyDataFlowAnalysis(
Functions.emplace(&F, FI(F));
for (auto &A : M.aliases())
if (isa<Function>(A.getBaseObject()))
Functions.emplace(&A, &A);
Functions.emplace(&A, StackSafetyInfo::FunctionInfo(&A));
}

ConstantRange
Expand Down

0 comments on commit 61eaf01

Please sign in to comment.