diff options
Diffstat (limited to 'lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp')
-rw-r--r-- | lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp b/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp index 05b16e28766..f2db10c3f75 100644 --- a/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp +++ b/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp @@ -810,14 +810,14 @@ LoadValueFromConsecutiveGPRRegisters (ExecutionContext &exe_ctx, const RegisterInfo *reg_info = NULL; if (is_return_value) { - // We are assumging we are decoding this immediately after returning + // We are assuming we are decoding this immediately after returning // from a function call and that the address of the structure is in x8 reg_info = reg_ctx->GetRegisterInfoByName("x8", 0); } else { // We are assuming we are stopped at the first instruction in a function - // and that the ABI is being respected so all paramters appear where they + // and that the ABI is being respected so all parameters appear where they // should be (functions with no external linkage can legally violate the ABI). if (NGRN >= 8) return false; |