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 be781c6 commit 24f4e4fCopy full SHA for 24f4e4f
lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.h
@@ -32,7 +32,12 @@ class NativeRegisterContextLinux
32
// given thread.
33
static std::unique_ptr<NativeRegisterContextLinux>
34
CreateHostNativeRegisterContextLinux(const ArchSpec &target_arch,
35
- NativeThreadLinux &native_thread);
+ NativeThreadLinux &native_thread)
36
+#ifdef __mips64
37
+ { llvm_unreachable("mips64 unsupported"); }
38
+#else
39
+ ;
40
+#endif
41
42
// Determine the architecture of the thread given by its ID.
43
static llvm::Expected<ArchSpec> DetermineArchitecture(lldb::tid_t tid);
0 commit comments