Details
Details
Diff Detail
Diff Detail
- Repository
- rLLDB LLDB
Event Timeline
source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_i386.h | ||
---|---|---|
9 | These macros are also defined when the compilation target is ARM. |
Comment Actions
Updated used guarding macros to cut-off ARM and ARM64 architectures as @tatyana-krasnukha mentioned
Comment Actions
Macros __x86_64__ and _M_X64 are more common than AMD-branded, though there is no functional difference (unless using old versions of the Intel compiler).
These macros are also defined when the compilation target is ARM.
I'd use #if defined(__i386__) || defined(_M_IX86) instead.