Common: Fix RISC-V/64 fastjmp buffer size

This commit is contained in:
Stenzek 2024-12-31 15:30:26 +10:00
parent b76618fdf4
commit 79b0533df2
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ struct fastjmp_buf
#elif defined(_M_IX86) || defined(__i386__)
static constexpr std::size_t BUF_SIZE = 24;
#elif defined(__riscv) && __riscv_xlen == 64
static constexpr std::size_t BUF_SIZE = 208;
static constexpr std::size_t BUF_SIZE = 216;
#else
#error Unknown architecture.
#endif