aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
diff options
context:
space:
mode:
authorMichael Kuperstein <mkuper@google.com>2016-06-28 00:54:12 +0000
committerMichael Kuperstein <mkuper@google.com>2016-06-28 00:54:12 +0000
commit835facd863ca94f28e32f4fd7a132e470d04e2f8 (patch)
tree302eea2407ed268d6bd4932b075b0a44b94a0c67 /llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
parent6c138ce31c374e3d86989cf6244a94209764990e (diff)
downloadllvm-835facd863ca94f28e32f4fd7a132e470d04e2f8.zip
llvm-835facd863ca94f28e32f4fd7a132e470d04e2f8.tar.gz
llvm-835facd863ca94f28e32f4fd7a132e470d04e2f8.tar.bz2
[PM] Normalize FIXMEs for missing PreserveCFG to have the same wording.
llvm-svn: 273974
Diffstat (limited to 'llvm/lib/Transforms/Scalar/IndVarSimplify.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/IndVarSimplify.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp b/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
index 3538784..542cf38 100644
--- a/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
+++ b/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
@@ -2233,8 +2233,7 @@ PreservedAnalyses IndVarSimplifyPass::run(Loop &L, AnalysisManager<Loop> &AM) {
if (!IVS.run(&L))
return PreservedAnalyses::all();
- // FIXME: once we have an equivalent of AU.setPreservesCFG() in the
- // new pass manager, we should use that here.
+ // FIXME: This should also 'preserve the CFG'.
return getLoopPassPreservedAnalyses();
}