8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65ac86 commit b6946a2Copy full SHA for b6946a2
lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp
@@ -75,11 +75,13 @@ typedef struct _FPReg {
75
(sizeof(GPR) + LLVM_EXTENSION offsetof(FPReg, regname))
76
77
#define DEFINE_XMM(reg) \
78
-#reg, NULL, sizeof(((FPReg *)nullptr)->reg), FPR_OFFSET(reg), eEncodingUint, \
79
- eFormatVectorOfUInt64, \
80
- {dwarf_##reg##_x86_64, dwarf_##reg##_x86_64, LLDB_INVALID_REGNUM, \
81
- LLDB_INVALID_REGNUM, lldb_##reg##_x86_64 }, \
82
- nullptr, nullptr, nullptr, 0
+ { \
+#reg, NULL, sizeof(((FPReg *)nullptr)->reg), FPR_OFFSET(reg), \
+ eEncodingUint, eFormatVectorOfUInt64, \
+ {dwarf_##reg##_x86_64, dwarf_##reg##_x86_64, LLDB_INVALID_REGNUM, \
+ LLDB_INVALID_REGNUM, lldb_##reg##_x86_64 }, \
83
+ nullptr, nullptr, nullptr, 0 \
84
+ }
85
86
// clang-format off
87
static RegisterInfo g_register_infos_x86_64[] = {
0 commit comments