From: Sanjay Patel Date: Tue, 11 Nov 2014 23:13:15 +0000 (+0000) Subject: Initialize new subtarget feature variable for generating reciprocal estimate instruct... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4e9c3e9cee96d3c2bfdf018375a7a4fd6ac6945b;p=oota-llvm.git Initialize new subtarget feature variable for generating reciprocal estimate instructions. This was missed in r221706. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221731 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp index 6d55b84e738..9d877c99e54 100644 --- a/lib/Target/X86/X86Subtarget.cpp +++ b/lib/Target/X86/X86Subtarget.cpp @@ -274,6 +274,7 @@ void X86Subtarget::initializeEnvironment() { SlowLEA = false; SlowIncDec = false; UseSqrtEst = false; + UseReciprocalEst = false; stackAlignment = 4; // FIXME: this is a known good value for Yonah. How about others? MaxInlineSizeThreshold = 128;