From 4245f1d79068e589f8db5972917b2e393b60cc7d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 21 Oct 2005 22:15:43 +0000 Subject: [PATCH] 64-bit reg support should not be enabled by default, as support isn't complete. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23878 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPC.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/PowerPC/PPC.td b/lib/Target/PowerPC/PPC.td index cfe2b5f8ed6..c714c913fba 100644 --- a/lib/Target/PowerPC/PPC.td +++ b/lib/Target/PowerPC/PPC.td @@ -57,12 +57,12 @@ def : Processor<"7450", G4PlusItineraries, [FeatureAltivec]>; def : Processor<"750", G3Itineraries, []>; def : Processor<"970", G5Itineraries, [FeatureAltivec, FeatureGPUL, FeatureFSqrt, - Feature64Bit, Feature64BitRegs]>; + Feature64Bit /*, Feature64BitRegs*/]>; def : Processor<"g4", G4Itineraries, [FeatureAltivec]>; def : Processor<"g4+", G4PlusItineraries, [FeatureAltivec]>; def : Processor<"g5", G5Itineraries, [FeatureAltivec, FeatureGPUL, FeatureFSqrt, - Feature64Bit, Feature64BitRegs]>; + Feature64Bit /*, Feature64BitRegs*/]>; def : Processor<"generic", G3Itineraries, []>; -- 2.34.1