summaryrefslogtreecommitdiff
path: root/tools/llvmc/ConfigLexer.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-08-29 19:26:56 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-08-29 19:26:56 +0000
commit52c2dc1a42bbe8ea2561e5246fb03fc414b41e8a (patch)
treef575c08fee11f9da84285f2902dba75dc892ef57 /tools/llvmc/ConfigLexer.h
parentbd4dd5c33a13587b7d095960f7646b00ac82b90e (diff)
downloadllvm-52c2dc1a42bbe8ea2561e5246fb03fc414b41e8a.tar.gz
llvm-52c2dc1a42bbe8ea2561e5246fb03fc414b41e8a.tar.bz2
llvm-52c2dc1a42bbe8ea2561e5246fb03fc414b41e8a.tar.xz
Convert llvmc to use the lib/System interface instead of directly
using Unix operating system calls. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16089 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc/ConfigLexer.h')
-rw-r--r--tools/llvmc/ConfigLexer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llvmc/ConfigLexer.h b/tools/llvmc/ConfigLexer.h
index 1808ac95f4..bb731d3c6f 100644
--- a/tools/llvmc/ConfigLexer.h
+++ b/tools/llvmc/ConfigLexer.h
@@ -57,6 +57,7 @@ enum ConfigLexerTokens {
COMMAND, ///< The name "command" (and variants)
EQUALS, ///< The equals sign, =
FALSETOK, ///< A boolean false value (false/no/off)
+ FORCE_SUBST, ///< The substitution item %force%
IN_SUBST, ///< The substitution item %in%
INTEGER, ///< An integer
LANG, ///< The name "lang" (and variants)
@@ -85,6 +86,7 @@ enum ConfigLexerTokens {
TRANSLATES, ///< The name "translates" (and variants)
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)
};