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
The purpose of __builtin_unreachable() is to assist the compiler in:
- Eliminating dead code that the programmer knows will never be executed.
- Linearizing the code by indicating to the compiler that the path is
'cold' (a similar effect can be achieved by calling a noreturn function).
0 commit comments