X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FAsmParser%2FLexer.l;h=7776c90a90a1c3ef8d17f91c2754f343b35b7e1f;hb=e43f40bc17ccdfa3ae6f237e302f34a392716c64;hp=1613e5f7798cefbf3d70c2ec42cc80a7992ed98d;hpb=699f1eb214fe6574986527b07d4f226ab0f86d64;p=oota-llvm.git diff --git a/lib/AsmParser/Lexer.l b/lib/AsmParser/Lexer.l index 1613e5f7798..7776c90a90a 100644 --- a/lib/AsmParser/Lexer.l +++ b/lib/AsmParser/Lexer.l @@ -155,10 +155,10 @@ global { return GLOBAL; } constant { return CONSTANT; } const { return CONST; } internal { return INTERNAL; } -uninitialized { return UNINIT; } +uninitialized { return EXTERNAL; } /* Deprecated, turn into external */ +external { return EXTERNAL; } implementation { return IMPLEMENTATION; } \.\.\. { return DOTDOTDOT; } -string { return STRING; } null { return NULL_TOK; } to { return TO; } except { return EXCEPT; }