diff options
author | Jiading Gai <jiading.gai@gmail.com> | 2018-07-22 20:04:42 +0000 |
---|---|---|
committer | Jiading Gai <jiading.gai@gmail.com> | 2018-07-22 20:04:42 +0000 |
commit | a26943725800950c502ddf7d2bbabdd7248ebc73 (patch) | |
tree | 6beade193d3f18fb12927b879d4e475935996606 /llvm/lib/Analysis/RegionInfo.cpp | |
parent | b2a626b52e1bb9afc15423a05b6660ffe362da23 (diff) | |
download | bcm5719-llvm-a26943725800950c502ddf7d2bbabdd7248ebc73.tar.gz bcm5719-llvm-a26943725800950c502ddf7d2bbabdd7248ebc73.zip |
Test commit, fix a minor typo.
llvm-svn: 337657
Diffstat (limited to 'llvm/lib/Analysis/RegionInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/RegionInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/RegionInfo.cpp b/llvm/lib/Analysis/RegionInfo.cpp index 1ef3e919d41..2bd611350f4 100644 --- a/llvm/lib/Analysis/RegionInfo.cpp +++ b/llvm/lib/Analysis/RegionInfo.cpp @@ -81,7 +81,7 @@ RegionInfo::~RegionInfo() = default; bool RegionInfo::invalidate(Function &F, const PreservedAnalyses &PA, FunctionAnalysisManager::Invalidator &) { // Check whether the analysis, all analyses on functions, or the function's - // CFG have been preserved. + // CFG has been preserved. auto PAC = PA.getChecker<RegionInfoAnalysis>(); return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() || PAC.preservedSet<CFGAnalyses>()); |