diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-05 17:27:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-05 17:27:31 +0000 |
commit | 622178dfc1a1f17f29978a24f5e2e98def0837eb (patch) | |
tree | badb131e0eb8fdf75952be299fe8ff7202d9b4d6 /llvm/tools/llvmc/ConfigLexer.l.cvs | |
parent | f997e37fbbe7afe7d0021703754cc2ea53e3c9b7 (diff) | |
download | bcm5719-llvm-622178dfc1a1f17f29978a24f5e2e98def0837eb.tar.gz bcm5719-llvm-622178dfc1a1f17f29978a24f5e2e98def0837eb.zip |
update the .cvs files.
llvm-svn: 37919
Diffstat (limited to 'llvm/tools/llvmc/ConfigLexer.l.cvs')
-rw-r--r-- | llvm/tools/llvmc/ConfigLexer.l.cvs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvmc/ConfigLexer.l.cvs b/llvm/tools/llvmc/ConfigLexer.l.cvs index 34b9a17de18..6bd61c85b97 100644 --- a/llvm/tools/llvmc/ConfigLexer.l.cvs +++ b/llvm/tools/llvmc/ConfigLexer.l.cvs @@ -79,7 +79,7 @@ ASSEMBLER assembler|Assembler|ASSEMBLER COMMAND command|Command|COMMAND LANG lang|Lang|LANG LIBS libs|Libs|LIBS -LINKER linker|Linker|LINKER +LINKER linker|Linker|LINKER NAME name|Name|NAME OPT1 opt1|Opt1|OPT1 OPT2 opt2|Opt2|OPT2 @@ -97,7 +97,7 @@ VERSION version|Version|VERSION True true|True|TRUE|on|On|ON|yes|Yes|YES False false|False|FALSE|off|Off|OFF|no|No|NO -Bytecode bc|BC|bytecode|Bytecode|BYTECODE +Bitcode bc|BC|bitcode|Bitcode|BITCODE Assembly asm|ASM|assembly|Assembly|ASSEMBLY BadSubst \%[a-zA-Z]*\% @@ -186,7 +186,7 @@ White [ \t]* %WOpts% { return handleSubstitution(WOPTS_SUBST); } {Assembly} { return handleValueContext(ASSEMBLY); } -{Bytecode} { return handleValueContext(BYTECODE); } +{Bitcode} { return handleValueContext(BITCODE); } {True} { return handleValueContext(TRUETOK); } {False} { return handleValueContext(FALSETOK); } |