aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-02-10 07:08:25 +0000
committerAndrew Trick <atrick@apple.com>2012-02-10 07:08:25 +0000
commit06efdd238ed7d14eaabc3b074c3b0b292c1c3127 (patch)
tree255b412ccc5a7d95c1b43e0f773408089b4d1093
parent060047f03b0279b4e6b83728156b95d7a3fd7218 (diff)
downloadexternal_llvm-06efdd238ed7d14eaabc3b074c3b0b292c1c3127.zip
external_llvm-06efdd238ed7d14eaabc3b074c3b0b292c1c3127.tar.gz
external_llvm-06efdd238ed7d14eaabc3b074c3b0b292c1c3127.tar.bz2
comment grammar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150233 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/Passes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/Passes.cpp b/lib/CodeGen/Passes.cpp
index 5a7ec66..abf6778 100644
--- a/lib/CodeGen/Passes.cpp
+++ b/lib/CodeGen/Passes.cpp
@@ -205,7 +205,7 @@ void TargetPassConfig::addISelPrepare() {
/// technique has maintainability tradeoffs because alternate pass orders are
/// not well supported. addPre/Post works better if the target pass is easily
/// tied to a common pass. But if it has subtle dependencies on multiple passes,
-/// overriding the stage instead.
+/// the target should override the stage instead.
///
/// TODO: We could use a single addPre/Post(ID) hook to allow pass injection
/// before/after any target-independent pass. But it's currently overkill.