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
LLVM fails to optimize out the unnecessary %j < %num_to_process check at the beginning of the inner loop in @src in the above LLVM IR snippet as the LLVM optimizer fails to detect that %remaining_len is greater than zero as %i is known to be less than %argc in all iterations of the outer loop due to the icmp sgt checks at the beginning of the outer loop.
alive-tv also determined that the transformation of @src to @tgt in the above snippet appears to be correct.