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
There may be a bug in an optimization that attempts to avoid inserting static conditional nodes around shared semantic values by computing the least common ancestor of mergeable subparsers. This wouldn't affect correctness, but could cause additional static conditional nodes to be inserted when not needed.
Should be fixable in the subparser merge function by moving the StackFrame s = ... into the for loop below it.
The text was updated successfully, but these errors were encountered:
There may be a bug in an optimization that attempts to avoid inserting static conditional nodes around shared semantic values by computing the least common ancestor of mergeable subparsers. This wouldn't affect correctness, but could cause additional static conditional nodes to be inserted when not needed.
Should be fixable in the subparser merge function by moving the
StackFrame s = ...
into the for loop below it.The text was updated successfully, but these errors were encountered: