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
//! Given a map of edges we could have taken to desired target, compute a value that determines which target should be branched to
818
+
// This function attempts to determine an equivalent condition from earlier in the code and use that if possible, falling back to creating a phi node of which edge was taken if necessary
819
+
// This function can be used in two ways:
820
+
// * If replacePHIs is null (usual case), this function does the branch
821
+
// * If replacePHIs isn't null, do not perform the branch and instead replace the PHI's with the derived condition as to whether we should branch to a particular target
0 commit comments