From 8fa05dac3962202eeb6de434aeb9f720e384345b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 16 Jun 2006 20:05:06 +0000 Subject: [PATCH] Force 64-bit register availability in 64-bit mode. For real. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28837 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCSubtarget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/PowerPC/PPCSubtarget.cpp b/lib/Target/PowerPC/PPCSubtarget.cpp index b909b5b39eb..2b78f9efb7b 100644 --- a/lib/Target/PowerPC/PPCSubtarget.cpp +++ b/lib/Target/PowerPC/PPCSubtarget.cpp @@ -84,9 +84,9 @@ PPCSubtarget::PPCSubtarget(const Module &M, const std::string &FS, bool is64Bit) 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