diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 04:06:15 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 04:06:15 +0000 |
commit | 0dac2eb58edf955ba7b57b584a48510c9df3fb6e (patch) | |
tree | 96f7981afdb29ee293fc9fae5b4cf15155ad2ffe /tools | |
parent | af77d74e07cb63322829fdde579826abdab8ea36 (diff) | |
download | external_llvm-0dac2eb58edf955ba7b57b584a48510c9df3fb6e.zip external_llvm-0dac2eb58edf955ba7b57b584a48510c9df3fb6e.tar.gz external_llvm-0dac2eb58edf955ba7b57b584a48510c9df3fb6e.tar.bz2 |
Remove the FORCE token, rename VERSION to VERSION_TOK so it doesn't
conflict with configuration variables and #defines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc/ConfigLexer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/llvmc/ConfigLexer.h b/tools/llvmc/ConfigLexer.h index 1548a72..acd4f98 100644 --- a/tools/llvmc/ConfigLexer.h +++ b/tools/llvmc/ConfigLexer.h @@ -60,7 +60,6 @@ enum ConfigLexerTokens { EQUALS, ///< The equals sign, = FALSETOK, ///< A boolean false value (false/no/off) FOPTS_SUBST, ///< The substitution item %fOpts% - FORCE_SUBST, ///< The substitution item %force% IN_SUBST, ///< The substitution item %in% INCLS_SUBST, ///< The substitution item %incls% INTEGER, ///< An integer @@ -93,7 +92,7 @@ enum ConfigLexerTokens { TRANSLATOR, ///< The name "translator" (and variants) TRUETOK, ///< A boolean true value (true/yes/on) VERBOSE_SUBST,///< The substitution item %verbose% - VERSION, ///< The name "version" (and variants) + VERSION_TOK, ///< The name "version" (and variants) WOPTS_SUBST, ///< The %WOpts% substitution }; |