diff options
author | JF Bastien <jfb@chromium.org> | 2013-08-14 14:48:42 -0700 |
---|---|---|
committer | JF Bastien <jfb@chromium.org> | 2013-08-14 14:48:42 -0700 |
commit | 1a563f0e433442f3f7aa60b636cc6a95d1c22c29 (patch) | |
tree | 0317cf1e9f7122b92e035131021e2873504371d7 | |
parent | bae4303e975c26e74ee562d709a99eedf6188e09 (diff) |
Correct DCE comment.
Follow-up to https://codereview.chromium.org/22710004/
R=eliben@chromium.org
Review URL: https://codereview.chromium.org/23085007
-rw-r--r-- | lib/Transforms/NaCl/PNaClABISimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/NaCl/PNaClABISimplify.cpp b/lib/Transforms/NaCl/PNaClABISimplify.cpp index 7d3307e0e7..5d64b088ce 100644 --- a/lib/Transforms/NaCl/PNaClABISimplify.cpp +++ b/lib/Transforms/NaCl/PNaClABISimplify.cpp @@ -116,7 +116,7 @@ void llvm::PNaClABISimplifyAddPostOptPasses(PassManager &PM) { PM.add(createStripDeadPrototypesPass()); // Eliminate simple dead code that the post-opt passes could have - // create. These are fairly simple passes that won't break the ABI. + // created. PM.add(createDeadInstEliminationPass()); PM.add(createDeadCodeEliminationPass()); } |