diff options
author | Sanjay Patel <spatel@rotateright.com> | 2014-11-11 23:13:15 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2014-11-11 23:13:15 +0000 |
commit | 50fc6ff5e351c3602c51bd2f25ed6e3770489ef9 (patch) | |
tree | e30d0381efdf5e53c3c46f639a0db57d05208118 /llvm/lib/Target/X86/X86Subtarget.cpp | |
parent | 941986390961a1fc36448d17e2b829a5e602f6ee (diff) | |
download | bcm5719-llvm-50fc6ff5e351c3602c51bd2f25ed6e3770489ef9.tar.gz bcm5719-llvm-50fc6ff5e351c3602c51bd2f25ed6e3770489ef9.zip |
Initialize new subtarget feature variable for generating reciprocal estimate instructions.
This was missed in r221706.
llvm-svn: 221731
Diffstat (limited to 'llvm/lib/Target/X86/X86Subtarget.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86Subtarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86Subtarget.cpp b/llvm/lib/Target/X86/X86Subtarget.cpp index 6d55b84e738..9d877c99e54 100644 --- a/llvm/lib/Target/X86/X86Subtarget.cpp +++ b/llvm/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; |