Put the PC encoding in the correct bit position.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118151 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/ARMMCCodeEmitter.cpp b/lib/Target/ARM/ARMMCCodeEmitter.cpp
index fcdc02e..62ec8bf 100644
--- a/lib/Target/ARM/ARMMCCodeEmitter.cpp
+++ b/lib/Target/ARM/ARMMCCodeEmitter.cpp
@@ -240,7 +240,7 @@
   EncodeAddrModeOpValues(MI, OpIdx, Reg, Imm8);
 
   if (Reg == ARM::PC)
-    return ARM::PC << 13;       // Rn is PC;
+    return ARM::PC << 9;        // Rn is PC;
 
   uint32_t Binary = ARM_AM::getAM5Offset(Imm8);
   // Immediate is always encoded as positive. The 'U' bit controls add vs sub.