diff options
Diffstat (limited to 'lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp')
-rw-r--r-- | lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp b/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp index 80b7d019880..402808ad4f3 100644 --- a/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp +++ b/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp @@ -1103,7 +1103,7 @@ bool ABISysV_hexagon::PrepareTrivialCall( sp -= argSize; // write this argument onto the stack of the host process - proc->WriteMemory(sp, arg.data_ap.get(), arg.size, error); + proc->WriteMemory(sp, arg.data_up.get(), arg.size, error); if (error.Fail()) return false; |