Remove the FORCE token, rename VERSION to VERSION_TOK so it doesn't
authorReid Spencer <rspencer@reidspencer.com>
Thu, 28 Oct 2004 04:06:15 +0000 (04:06 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 28 Oct 2004 04:06:15 +0000 (04:06 +0000)
conflict with configuration variables and #defines.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17298 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvmc/ConfigLexer.h

index 1548a72414518c04e3e55dad69a7c5ba9ae74acf..acd4f987c8b6b9bac5faa357446571f302eb7964 100644 (file)
@@ -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
 };