commit | 2d04ec5fe65aa5ec0688b661a4abb20456941989 | [log] [tgz] |
---|---|---|
author | Mikhail Glushenkov <foldr@codedgers.com> | Thu Sep 10 16:22:02 2009 +0000 |
committer | Mikhail Glushenkov <foldr@codedgers.com> | Thu Sep 10 16:22:02 2009 +0000 |
tree | 103bf0a2d7828188f5efe71b7797786910542c7d | |
parent | 684a8b0f10cb43ed77ccc094cdeac6b4740d4598 [diff] [blame] |
Distinguish between 'empty' and empty DAG marker. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81448 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/LLVMCConfigurationEmitter.cpp b/utils/TableGen/LLVMCConfigurationEmitter.cpp index 8a5b36a..0807bff 100644 --- a/utils/TableGen/LLVMCConfigurationEmitter.cpp +++ b/utils/TableGen/LLVMCConfigurationEmitter.cpp
@@ -89,7 +89,7 @@ // isDagEmpty - is this DAG marked with an empty marker? bool isDagEmpty (const DagInit* d) { - return d->getOperator()->getAsString() == "empty"; + return d->getOperator()->getAsString() == "empty_dag_marker"; } // EscapeVariableName - Escape commas and other symbols not allowed