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
IRList.structural_equals does not handle MFLOW_FALLTHROUGH and instructions at the end of method.
if there are 2 methods
method1's IR:
return-void
method2's IR:
FALLTHROUGH
return-void
FALLTHROUGH or DEBUG or POSITION
the 2 method should be "structural equals", but redex return false, because
structural_equals does not skip FALLTHROUGH
structural_equals does not skip useless instructions at the end of method2, which means that the pointer of method1 reaches the end first, while the pointer of method2 still points to the useless instruction.
The text was updated successfully, but these errors were encountered:
IRList.structural_equals
does not handleMFLOW_FALLTHROUGH
and instructions at the end of method.if there are 2 methods
the 2 method should be "structural equals", but redex return false, because
structural_equals
does not skipFALLTHROUGH
structural_equals
does not skip useless instructions at the end ofmethod2
, which means that the pointer ofmethod1
reaches the end first, while the pointer ofmethod2
still points to the useless instruction.The text was updated successfully, but these errors were encountered: