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
This function currently reserves to the next power of two. This makes sense during compiler push operations, but the library function is typically called when the final size of the vector is known. Even when that assumption isn't correct we'll end up allocating to the next power of two on the next push.
The text was updated successfully, but these errors were encountered:
Fixes a regression introduced by rust-lang#1453. The symtabl2gb prints a lot of debug messages, so we always suppressed the output except when there is an error in its execution.
This function currently reserves to the next power of two. This makes sense during compiler push operations, but the library function is typically called when the final size of the vector is known. Even when that assumption isn't correct we'll end up allocating to the next power of two on the next push.
The text was updated successfully, but these errors were encountered: