From 4e9c3e9cee96d3c2bfdf018375a7a4fd6ac6945b Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Tue, 11 Nov 2014 23:13:15 +0000 Subject: [PATCH] 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 --- lib/Target/X86/X86Subtarget.cpp | 1 + 1 file changed, 1 insertion(+) 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; -- 2.34.1