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.