Fix compilation with the GDB stub disabled (#1863)

This commit is contained in:
Jesse Talavera-Greenberg 2023-11-01 11:02:15 -04:00 committed by GitHub
parent 3b4fdea376
commit d11ba63bb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -68,9 +68,9 @@ void ARM::GdbCheckC()
else GdbCheckB();
}
#else
ARM::GdbCheckA() {}
ARM::GdbCheckB() {}
ARM::GdbCheckC() {}
void ARM::GdbCheckA() {}
void ARM::GdbCheckB() {}
void ARM::GdbCheckC() {}
#endif