aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2008-09-22 20:48:22 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2008-09-22 20:48:22 +0000
commit56a625aff31556028601127c074b5fb91f17eecf (patch)
tree496826efe631841fd5faf48db5bb42a80efce2be /utils
parentcdbfa1aa913916d9480e651433388bc95b11c70a (diff)
downloadexternal_llvm-56a625aff31556028601127c074b5fb91f17eecf.zip
external_llvm-56a625aff31556028601127c074b5fb91f17eecf.tar.gz
external_llvm-56a625aff31556028601127c074b5fb91f17eecf.tar.bz2
Make comments a little bit more clear.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/LLVMCConfigurationEmitter.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/TableGen/LLVMCConfigurationEmitter.cpp b/utils/TableGen/LLVMCConfigurationEmitter.cpp
index 133415b..9bfb5da 100644
--- a/utils/TableGen/LLVMCConfigurationEmitter.cpp
+++ b/utils/TableGen/LLVMCConfigurationEmitter.cpp
@@ -826,8 +826,10 @@ bool EmitCaseTest1Arg(const std::string& TestName,
O << "InLangs.count(\"" << OptName << "\") != 0";
return true;
} else if (TestName == "in_language") {
- // TODO: remove this restriction
- // Works only for cmd_line!
+ // This works only for single-argument Tool::GenerateAction. Join
+ // tools can process several files in different languages simultaneously.
+
+ // TODO: make this work with Edge::Weight (if possible).
O << "LangMap.GetLanguage(inFile) == \"" << OptName << '\"';
return true;
} else if (TestName == "not_empty") {