Eliminate the force flag, configuration item, and related support


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17296 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/llvmc/ConfigLexer.l b/tools/llvmc/ConfigLexer.l
index cab02a1..6633156 100644
--- a/tools/llvmc/ConfigLexer.l
+++ b/tools/llvmc/ConfigLexer.l
@@ -134,7 +134,7 @@
                   return EQUALS; 
                 }
 
-{VERSION}       { return handleNameContext(VERSION); }
+{VERSION}       { return handleNameContext(VERSION_TOK); }
 
 {LANG}          { return handleNameContext(LANG); }
 {NAME}          { return handleNameContext(NAME); }
@@ -161,7 +161,6 @@
 
 %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); }