Changes in directory llvm/lib/Target/PowerPC:

PPCSubtarget.cpp updated: 1.23 -> 1.24
---
Log message:

Force 64-bit register availability in 64-bit mode.  For real.


---
Diffs of the changes:  (+2 -2)

 PPCSubtarget.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/PowerPC/PPCSubtarget.cpp
diff -u llvm/lib/Target/PowerPC/PPCSubtarget.cpp:1.23 
llvm/lib/Target/PowerPC/PPCSubtarget.cpp:1.24
--- llvm/lib/Target/PowerPC/PPCSubtarget.cpp:1.23       Fri Jun 16 13:50:48 2006
+++ llvm/lib/Target/PowerPC/PPCSubtarget.cpp    Fri Jun 16 15:05:06 2006
@@ -84,9 +84,9 @@
       std::cerr << "PPC: Generation of 64-bit code for a 32-bit processor "
                    "requested.  Ignoring 32-bit processor feature.\n";
       Has64BitSupport = true;
-      // Silently force 64-bit register use on ppc64.
-      Use64BitRegs = true;
     }
+    // Silently force 64-bit register use on ppc64.
+    Use64BitRegs = true;
   }
   
   // If the user requested use of 64-bit regs, but the cpu selected doesn't



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to