aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/InstCombine/InstructionCombining.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/InstCombine/InstructionCombining.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/InstCombine/InstructionCombining.cpp')
-rw-r--r--llvm/lib/Transforms/InstCombine/InstructionCombining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
index 2d3ff83..c25199d 100644
--- a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
@@ -3111,7 +3111,7 @@ PreservedAnalyses InstCombinePass::run(Function &F,
return PreservedAnalyses::all();
// Mark all the analyses that instcombine updates as preserved.
- // FIXME: Need a way to preserve CFG analyses here!
+ // FIXME: This should also 'preserve the CFG'.
PreservedAnalyses PA;
PA.preserve<DominatorTreeAnalysis>();
return PA;