You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed UNREACHABLE missing return warning on GCC 12
GCC 12 wshen using `-O0` fails because of a missing-return-statement
warning caused by the implementation of `INVARIANT(false)`.
This is beacause the condition `if (true)` is not considered exaustive.
The solution involves marking the unreachable path as
`__builtin_unreachable()`.
0 commit comments