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
__builtin_unreachable is currently accepted, but seems to be compiled as a no-operation. Wouldn't it be reasonable, at LTL level, to compile it as a self-loop (Nop onto the same control location)? Then, optimizations could take advantage of knowing that some operation won't return. Same for functions declared _Noreturn.
The text was updated successfully, but these errors were encountered:
__builtin_unreachable
is currently accepted, but seems to be compiled as a no-operation. Wouldn't it be reasonable, at LTL level, to compile it as a self-loop (Nop
onto the same control location)? Then, optimizations could take advantage of knowing that some operation won't return. Same for functions declared_Noreturn
.The text was updated successfully, but these errors were encountered: