Skip to content

Commit 24f4e4f

Browse files
committed
[mips] Add stub for mips64 LLDB impl
1 parent be781c6 commit 24f4e4f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ class NativeRegisterContextLinux
3232
// given thread.
3333
static std::unique_ptr<NativeRegisterContextLinux>
3434
CreateHostNativeRegisterContextLinux(const ArchSpec &target_arch,
35-
NativeThreadLinux &native_thread);
35+
NativeThreadLinux &native_thread)
36+
#ifdef __mips64
37+
{ llvm_unreachable("mips64 unsupported"); }
38+
#else
39+
;
40+
#endif
3641

3742
// Determine the architecture of the thread given by its ID.
3843
static llvm::Expected<ArchSpec> DetermineArchitecture(lldb::tid_t tid);

0 commit comments

Comments
 (0)