diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-23 23:35:50 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-23 23:35:50 +0000 |
commit | c0f376dba2b51aacf06cfefbc1c46120bb8b725d (patch) | |
tree | 10d44a37d45bbf266f8318abb04a57b529719f80 /tools | |
parent | 90654fd9248b543ab254d7e8e6280b39ea80e3ce (diff) | |
download | external_llvm-c0f376dba2b51aacf06cfefbc1c46120bb8b725d.zip external_llvm-c0f376dba2b51aacf06cfefbc1c46120bb8b725d.tar.gz external_llvm-c0f376dba2b51aacf06cfefbc1c46120bb8b725d.tar.bz2 |
SPACE is a legitimate token now, to separate option words.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc/ConfigLexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/llvmc/ConfigLexer.h b/tools/llvmc/ConfigLexer.h index acd4f98..e11c6e1 100644 --- a/tools/llvmc/ConfigLexer.h +++ b/tools/llvmc/ConfigLexer.h @@ -84,6 +84,7 @@ enum ConfigLexerTokens { PREPROCESSOR, ///< The name "preprocessor" (and variants) REQUIRED, ///< The name "required" (and variants) SEPARATOR, ///< A configuration item separator + SPACE, ///< Space between options STATS_SUBST, ///< The stats substitution item %stats% STRING, ///< A quoted string TARGET_SUBST, ///< The substitition item %target% |