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
When transitioning from oldmap::HashMap to LinearMap in #5523, I ran into a number of spots which caused segfaults when compiling some time between stage1 and stage2.
Each segfault could be fixed with a copy, although the copy isn't necessary in most cases. This mostly showed up with types of the form &*T, and the copy ended up yielding a *T type.
I wasn't able to track it down much further, but there are a number of spots throughout the compiler marked with a FIXME for this issue.
The text was updated successfully, but these errors were encountered:
I am 99% sure I know the origin of this problem. As part of my fix for #5910, I encountered several of these copies at locations where hashtables were being mutated while being iterated. This was going undetected due to numerous bugs in the @mut write guard code. Therefore, I am going to close this bug as a dup of #5910.
When transitioning from
oldmap::HashMap
toLinearMap
in #5523, I ran into a number of spots which caused segfaults when compiling some time between stage1 and stage2.Each segfault could be fixed with a
copy
, although the copy isn't necessary in most cases. This mostly showed up with types of the form&*T
, and the copy ended up yielding a*T
type.I wasn't able to track it down much further, but there are a number of spots throughout the compiler marked with a
FIXME
for this issue.The text was updated successfully, but these errors were encountered: