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
If you crank up the optimisation level on the promote_expr.c test it fails with:
ld.lld: error: yk_mt_control_point() must be called inside a loop.
And if you look at the AOT IR, you can see that the interpreter loop was unrolled and the calls to the control point have been duplicated (which may cause some related issues).
The safest thing to do in the short term would be to disable loop unrolling loops containing a call to the control point.
(We don't want to disable all loop unrolling though)
The text was updated successfully, but these errors were encountered:
If you crank up the optimisation level on the
promote_expr.c
test it fails with:And if you look at the AOT IR, you can see that the interpreter loop was unrolled and the calls to the control point have been duplicated (which may cause some related issues).
The safest thing to do in the short term would be to disable loop unrolling loops containing a call to the control point.
(We don't want to disable all loop unrolling though)
The text was updated successfully, but these errors were encountered: