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
Right now the code generation for a string literal just calls luaS_new in place. We cannot rely on the C compiler moving this allocation outside of a loop, as it has no way to know that luaS_new is constant, so the Titan compiler is the one that has to do it.
The text was updated successfully, but these errors were encountered:
Right now the code generation for a string literal just calls
luaS_new
in place. We cannot rely on the C compiler moving this allocation outside of a loop, as it has no way to know thatluaS_new
is constant, so the Titan compiler is the one that has to do it.The text was updated successfully, but these errors were encountered: