get rid of another pseudo op


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22299 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp
index 6d2cfc6..deb3678 100644
--- a/lib/Target/Alpha/AlphaISelPattern.cpp
+++ b/lib/Target/Alpha/AlphaISelPattern.cpp
@@ -1607,8 +1607,9 @@
   case ISD::GlobalAddress:
     AlphaLowering.restoreGP(BB);
     has_sym = true;
-    BuildMI(BB, Alpha::LOAD_ADDR, 1, Result)
-      .addGlobalAddress(cast<GlobalAddressSDNode>(N)->getGlobal());
+    BuildMI(BB, Alpha::LDQrl, 2, Result)
+      .addGlobalAddress(cast<GlobalAddressSDNode>(N)->getGlobal())
+      .addReg(Alpha::R29);
     return Result;
 
   case ISD::TAILCALL: