diff options
author | Michael Kuperstein <mkuper@google.com> | 2016-06-28 00:54:12 +0000 |
---|---|---|
committer | Michael Kuperstein <mkuper@google.com> | 2016-06-28 00:54:12 +0000 |
commit | 835facd863ca94f28e32f4fd7a132e470d04e2f8 (patch) | |
tree | 302eea2407ed268d6bd4932b075b0a44b94a0c67 /llvm/lib/Transforms/Scalar/IndVarSimplify.cpp | |
parent | 6c138ce31c374e3d86989cf6244a94209764990e (diff) | |
download | llvm-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.cpp | 3 |
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(); } |