aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJF Bastien <jfb@chromium.org>2013-08-14 14:48:42 -0700
committerJF Bastien <jfb@chromium.org>2013-08-14 14:48:42 -0700
commit1a563f0e433442f3f7aa60b636cc6a95d1c22c29 (patch)
tree0317cf1e9f7122b92e035131021e2873504371d7
parentbae4303e975c26e74ee562d709a99eedf6188e09 (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.cpp2
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());
}