Skip to content

Commit

Permalink
riscv: Avoid a jit warning.
Browse files Browse the repository at this point in the history
We'll end up doing the same as arm64, most likely.
  • Loading branch information
unknownbrackets committed Jan 1, 2023
1 parent 77849d3 commit cee8bfd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Core/MIPS/JitCommon/JitBlockCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,9 @@ int JitBlockCache::GetBlockExitSize() {
#elif PPSSPP_ARCH(ARM64)
// Will depend on the sequence found to encode the destination address.
return 0;
#elif PPSSPP_ARCH(RISCV64)
// Will depend on the sequence found to encode the destination address.
return 0;
#else
#warning GetBlockExitSize unimplemented
return 0;
Expand Down

0 comments on commit cee8bfd

Please sign in to comment.