diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-10 07:58:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-10 07:58:01 +0000 |
commit | 70cc3397f84c2e1fd69c059a0ef89e398e847b00 (patch) | |
tree | ca2156daf75e4abf788d92925bdce4063da36e58 /lib/AsmParser/Lexer.l | |
parent | 7720c8e1a7a252e983e3f3e7f841d7901dfea80c (diff) | |
download | external_llvm-70cc3397f84c2e1fd69c059a0ef89e398e847b00.zip external_llvm-70cc3397f84c2e1fd69c059a0ef89e398e847b00.tar.gz external_llvm-70cc3397f84c2e1fd69c059a0ef89e398e847b00.tar.bz2 |
Implement global variable support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/Lexer.l')
-rw-r--r-- | lib/AsmParser/Lexer.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AsmParser/Lexer.l b/lib/AsmParser/Lexer.l index 9c3f947..6a650a3 100644 --- a/lib/AsmParser/Lexer.l +++ b/lib/AsmParser/Lexer.l @@ -122,6 +122,7 @@ end { return END; } true { return TRUE; } false { return FALSE; } declare { return DECLARE; } +global { return GLOBAL; } implementation { return IMPLEMENTATION; } \.\.\. { return DOTDOTDOT; } string { return STRING; } |