diff options
author | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-08-26 13:35:59 +0000 |
---|---|---|
committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-08-26 13:35:59 +0000 |
commit | 55aafa35ea33fcbb2ec3050578119a7958fa7012 (patch) | |
tree | cd1f592af7226412cdb484c51d02d649e876889b /lldb/source/Plugins/Process/Windows/Common | |
parent | b54efd28c4dc37076caf9f5dc69a857f1493e0e1 (diff) | |
download | bcm5719-llvm-55aafa35ea33fcbb2ec3050578119a7958fa7012.tar.gz bcm5719-llvm-55aafa35ea33fcbb2ec3050578119a7958fa7012.zip |
[ProcessWindows] Remove equivalent macros
llvm-svn: 369908
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/Common')
-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_ |