aboutsummaryrefslogtreecommitdiff
path: root/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h')
-rw-r--r--source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h b/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
index 13df477e84bc..671d6a18260e 100644
--- a/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
+++ b/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
@@ -88,7 +88,9 @@ protected:
bool RegisterIsCalleeSaved(const lldb_private::RegisterInfo *reg_info);
private:
- ABISysV_s390x(lldb::ProcessSP process_sp) : lldb_private::ABI(process_sp) {
+ ABISysV_s390x(lldb::ProcessSP process_sp,
+ std::unique_ptr<llvm::MCRegisterInfo> info_up)
+ : lldb_private::ABI(std::move(process_sp), std::move(info_up)) {
// Call CreateInstance instead.
}
};