The parser now accepts "external" global variables, in addition to the backwards
[oota-llvm.git] / lib / AsmParser / Lexer.l
index b8a795567d2786ce6d94e7992cc226fbdce888a6..7776c90a90a1c3ef8d17f91c2754f343b35b7e1f 100644 (file)
@@ -155,7 +155,8 @@ 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; }
 null            { return NULL_TOK; }