Minor, non-functionality changing, formatting fix
[oota-llvm.git] / lib / AsmParser / Lexer.l
index 1613e5f7798cefbf3d70c2ec42cc80a7992ed98d..7776c90a90a1c3ef8d17f91c2754f343b35b7e1f 100644 (file)
@@ -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; }