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
@eddyb did a lot of great work identifying constants that can be safely promoted into static values, which we are using to improve our code generation. However, we don't expose this information to the end-user, except in the special case of an empty vector literal like &[]. We should fix this!
The main work here is going through the code, writing up the rules found there, and perhaps cleaning them up some for "human consumption".
The text was updated successfully, but these errors were encountered:
@eddyb did a lot of great work identifying constants that can be safely promoted into static values, which we are using to improve our code generation. However, we don't expose this information to the end-user, except in the special case of an empty vector literal like
&[]
. We should fix this!The main work here is going through the code, writing up the rules found there, and perhaps cleaning them up some for "human consumption".
The text was updated successfully, but these errors were encountered: