1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

comment grammar

llvm-svn: 150233
This commit is contained in:
Andrew Trick 2012-02-10 07:08:25 +00:00
parent 035a90c9ec
commit 1893eb6083

View File

@ -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.