| commit | da9755002f3ab593b745dd055f4c3ff1ad66aac7 | [log] [tgz] |
|---|---|---|
| author | Chris Lattner <sabre@nondot.org> | Mon Sep 10 07:58:01 2001 +0000 |
| committer | Chris Lattner <sabre@nondot.org> | Mon Sep 10 07:58:01 2001 +0000 |
| tree | a778381d84adcc740d5211ce9894bdce55d40532 | |
| parent | baf08eb2a7845d48a0945f26a3bd80098f63a116 [diff] [blame] |
Implement global variable support llvm-svn: 530
diff --git a/llvm/lib/AsmParser/Lexer.l b/llvm/lib/AsmParser/Lexer.l index 9c3f947..6a650a3 100644 --- a/llvm/lib/AsmParser/Lexer.l +++ b/llvm/lib/AsmParser/Lexer.l
@@ -122,6 +122,7 @@ true { return TRUE; } false { return FALSE; } declare { return DECLARE; } +global { return GLOBAL; } implementation { return IMPLEMENTATION; } \.\.\. { return DOTDOTDOT; } string { return STRING; }