diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-09-14 01:59:31 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-09-14 01:59:31 +0000 |
| commit | 86343e43dcac73a396b843d94056772dce881078 (patch) | |
| tree | 4b2c8a37fcc7590a60b99a014037c9d83652ba7d /llvm/tools/llvmc/ConfigLexer.h | |
| parent | 4de872f6234278f3ab5a199624de10c5db15ee23 (diff) | |
| download | bcm5719-llvm-86343e43dcac73a396b843d94056772dce881078.tar.gz bcm5719-llvm-86343e43dcac73a396b843d94056772dce881078.zip | |
Support substitution options for the W, M, and f options.
llvm-svn: 16326
Diffstat (limited to 'llvm/tools/llvmc/ConfigLexer.h')
| -rw-r--r-- | llvm/tools/llvmc/ConfigLexer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/llvmc/ConfigLexer.h b/llvm/tools/llvmc/ConfigLexer.h index f947da2bf2c..1548a724145 100644 --- a/llvm/tools/llvmc/ConfigLexer.h +++ b/llvm/tools/llvmc/ConfigLexer.h @@ -59,6 +59,7 @@ enum ConfigLexerTokens { DEFS_SUBST, ///< The substitution item %defs% 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% @@ -68,6 +69,7 @@ enum ConfigLexerTokens { LIBS, ///< The name "libs" (and variants) LIBS_SUBST, ///< The substitution item %libs% LINKER, ///< The name "linker" (and variants) + MOPTS_SUBST, ///< The substitution item %Mopts% NAME, ///< The name "name" (and variants) OPT_SUBST, ///< The substitution item %opt% OPTIMIZER, ///< The name "optimizer" (and variants) @@ -92,6 +94,7 @@ enum ConfigLexerTokens { TRUETOK, ///< A boolean true value (true/yes/on) VERBOSE_SUBST,///< The substitution item %verbose% VERSION, ///< The name "version" (and variants) + WOPTS_SUBST, ///< The %WOpts% substitution }; extern ConfigLexerTokens Configlex(); |

