diff options
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.cpp b/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.cpp index 11f72c00211..014b15c925b 100644 --- a/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.cpp @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -#if defined(__x86_64__) || defined(__amd64__) || defined(_M_X64) || defined(_M_AMD64) +#if defined(__x86_64__) || defined(_M_X64) #include "lldb/Host/windows/HostThreadWindows.h" #include "lldb/Host/windows/windows.h" @@ -537,4 +537,4 @@ bool RegisterContextWindows_x64::WriteRegister(const RegisterInfo *reg_info, wthread.GetHostThread().GetNativeThread().GetSystemHandle(), &m_context); } -#endif // defined(__x86_64__) || defined(__amd64__) || defined(_M_X64) || defined(_M_AMD64) +#endif // defined(__x86_64__) || defined(_M_X64) diff --git a/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.h b/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.h index 20d2cb90ece..99901ce53fb 100644 --- a/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.h +++ b/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.h @@ -9,7 +9,7 @@ #ifndef liblldb_RegisterContextWindows_x64_H_ #define liblldb_RegisterContextWindows_x64_H_ -#if defined(__x86_64__) || defined(__amd64__) || defined(_M_X64) || defined(_M_AMD64) +#if defined(__x86_64__) || defined(_M_X64) #include "RegisterContextWindows.h" #include "lldb/lldb-forward.h" @@ -42,6 +42,6 @@ public: }; } -#endif // defined(__x86_64__) || defined(__amd64__) || defined(_M_X64) || defined(_M_AMD64) +#endif // defined(__x86_64__) || defined(_M_X64) #endif // #ifndef liblldb_RegisterContextWindows_x64_H_ |