Teach IndVarSimplify how to eliminate comparisons involving induction
variables. For example, with code like this: for (i=0;i<n;++i) if (i<n) x[i] = 0; IndVarSimplify will now recognize that i is always less than n inside the loop, and eliminate the if. llvm-svn: 101000
Loading
Please register or sign in to comment