From 70cc3397f84c2e1fd69c059a0ef89e398e847b00 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 10 Sep 2001 07:58:01 +0000 Subject: Implement global variable support git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@530 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AsmParser/Lexer.l | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/AsmParser/Lexer.l') 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; } -- cgit v1.1