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
Compiler: avoid type instability in access to PartialStruct field (JuliaLang#57553)
The `Base.getproperty` method for `PartialStruct` has a type assert to
ensure type stable access of the field `undef`. However Compiler.jl has
`Compiler.getproperty === Core.getfield`.
Introduce a getter for this field of `PartialStruct` into Compiler.jl
and use it.
I guess this should improve compiler performance, and it should help
avoid spurious invalidation.
0 commit comments