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 14946c1 commit 7b067e5Copy full SHA for 7b067e5
lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.h
@@ -40,7 +40,15 @@ class NativeRegisterContextLinux
40
#endif
41
42
// Determine the architecture of the thread given by its ID.
43
+#ifdef __mips64
44
+ static llvm::Expected<ArchSpec> DetermineArchitecture(lldb::tid_t tid) {
45
+ return llvm::createStringError(
46
+ llvm::inconvertibleErrorCode(),
47
+ "Architecture does not support this function");
48
+ }
49
+#else
50
static llvm::Expected<ArchSpec> DetermineArchitecture(lldb::tid_t tid);
51
+#endif
52
53
// Invalidates cached values in register context data structures
54
virtual void InvalidateAllRegisters(){}
0 commit comments