Renamed PPC32 (namespace for regs, opcodes) to PPC to include 64-bit targets


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15631 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PowerPC/PowerPCPEI.cpp b/lib/Target/PowerPC/PowerPCPEI.cpp
index c2d4709..eda17ac 100644
--- a/lib/Target/PowerPC/PowerPCPEI.cpp
+++ b/lib/Target/PowerPC/PowerPCPEI.cpp
@@ -170,7 +170,7 @@
     unsigned RegSize = RegInfo->getRegClass(RegsToSave[i])->getSize();
     int FrameIdx;
     
-    if (RegsToSave[i] == PPC32::LR) {
+    if (RegsToSave[i] == PPC::LR) {
       FrameIdx = FFI->CreateFixedObject(RegSize, 8); // LR lives at +8
     } else {
       Offset -= RegSize;