Upgrade shr to ashr and lshr


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32103 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/llvm-upgrade/UpgradeLexer.l.cvs b/tools/llvm-upgrade/UpgradeLexer.l.cvs
index 293220a..b3e1264 100644
--- a/tools/llvm-upgrade/UpgradeLexer.l.cvs
+++ b/tools/llvm-upgrade/UpgradeLexer.l.cvs
@@ -186,8 +186,9 @@
 cast            { RET_TOK( CAST); }
 select          { RET_TOK( SELECT); }
 shl             { RET_TOK( SHL); }
-lshr            { RET_TOK( LSHR); }
+shr             { RET_TOK( SHR); }
 ashr            { RET_TOK( ASHR); }
+lshr            { RET_TOK( LSHR); }
 va_arg          { RET_TOK( VAARG); }
 ret             { RET_TOK( RET); }
 br              { RET_TOK( BR); }