fix path choices

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2025-10-19 05:05:31 +00:00
parent 21322994d9
commit 632b0be2a9
No known key found for this signature in database
GPG key ID: 00287378CADCAB13

View file

@ -36,7 +36,8 @@ constexpr auto Rscratch0() {
} else if constexpr (bitsize == 64) {
return Xscratch0;
} else {
static_assert(false);
// TODO: This codepath is regarded as "takeable" on gcc12
return Xscratch0; //static_assert(false);
}
}
@ -47,7 +48,8 @@ constexpr auto Rscratch1() {
} else if constexpr (bitsize == 64) {
return Xscratch1;
} else {
static_assert(false);
// TODO: This codepath is regarded as "takeable" on gcc12
return Xscratch1; //static_assert(false);
}
}