From 7ac4592e97dec65c8d3e6c33f4ab06e95e4080fa Mon Sep 17 00:00:00 2001 From: Hal Finkel Date: Wed, 3 Apr 2013 14:40:18 +0000 Subject: [PATCH] PPC: Enable FRES and FRSQRTE on the default PPC64 description I discussed this with Bill Schmidt on IRC, and it was decided that this is a safe and reasonable default. llvm-svn: 178659 --- llvm/lib/Target/PowerPC/PPC.td | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/Target/PowerPC/PPC.td b/llvm/lib/Target/PowerPC/PPC.td index ac1b7133a339..d6a3ceb18f29 100644 --- a/llvm/lib/Target/PowerPC/PPC.td +++ b/llvm/lib/Target/PowerPC/PPC.td @@ -212,7 +212,8 @@ def : Processor<"pwr7", G5Itineraries, def : Processor<"ppc", G3Itineraries, [Directive32]>; def : Processor<"ppc64", G5Itineraries, [Directive64, FeatureAltivec, - FeatureMFOCRF, FeatureFSqrt, FeatureSTFIWX, + FeatureMFOCRF, FeatureFSqrt, FeatureFRES, + FeatureFRSQRTE, FeatureSTFIWX, Feature64Bit /*, Feature64BitRegs */]>;