diff options
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp b/lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp index 0b105634a56..dab4cbc59a2 100644 --- a/lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp +++ b/lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp @@ -20,6 +20,8 @@ #include "MachThread.h" #include "MachProcess.h" +extern "C" bool CPUHasAVX(); // Defined over in DNBArchImplX86_64.cpp + #if defined (LLDB_DEBUGSERVER_RELEASE) || defined (LLDB_DEBUGSERVER_DEBUG) enum debugState { debugStateUnknown, @@ -27,8 +29,6 @@ enum debugState { debugStateOn }; -extern "C" bool CPUHasAVX(); // Defined over in DNBArchImplX86_64.cpp - static debugState sFPUDebugState = debugStateUnknown; static debugState sAVXForceState = debugStateUnknown; |