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
The problem is that the filter (formerly known as pe_policy) is not a real operand of a continuation. It should be, but it isn't. Changing this would introduce many subtle bugs in other passes because currently we assume that op(0) of a continuation is its callee and op(1) to op(1+n-1) is its argument list. We would have to do this:
The following example should specialize
specialize
, but it doesn't since PE is too eager.This produces:
While it should yield (removing
@(?i)
or replacing by@(?x)
):This seems to be related to #90.
The text was updated successfully, but these errors were encountered: