diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 04:04:38 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 04:04:38 +0000 |
| commit | 04b92192ec696b834eb4451a6ca9f81ea3bb50ff (patch) | |
| tree | 09c16440e4d149b05bd1d220a2b31a5f10cb5402 /llvm/tools/llvmc/ConfigLexer.l | |
| parent | ffe5f97f1778daa9618a6eca7b13b094a4f8a4c4 (diff) | |
| download | bcm5719-llvm-04b92192ec696b834eb4451a6ca9f81ea3bb50ff.tar.gz bcm5719-llvm-04b92192ec696b834eb4451a6ca9f81ea3bb50ff.zip | |
Eliminate the force flag, configuration item, and related support
llvm-svn: 17296
Diffstat (limited to 'llvm/tools/llvmc/ConfigLexer.l')
| -rw-r--r-- | llvm/tools/llvmc/ConfigLexer.l | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/llvmc/ConfigLexer.l b/llvm/tools/llvmc/ConfigLexer.l index cab02a1eec7..6633156eb33 100644 --- a/llvm/tools/llvmc/ConfigLexer.l +++ b/llvm/tools/llvmc/ConfigLexer.l @@ -134,7 +134,7 @@ White [ \t]* return EQUALS; } -{VERSION} { return handleNameContext(VERSION); } +{VERSION} { return handleNameContext(VERSION_TOK); } {LANG} { return handleNameContext(LANG); } {NAME} { return handleNameContext(NAME); } @@ -161,7 +161,6 @@ White [ \t]* %args% { return handleSubstitution(ARGS_SUBST); } %defs% { return handleSubstitution(DEFS_SUBST); } -%force% { return handleSubstitution(FORCE_SUBST); } %in% { return handleSubstitution(IN_SUBST); } %incls% { return handleSubstitution(INCLS_SUBST); } %libs% { return handleSubstitution(LIBS_SUBST); } |

