getAddExpr utility uses computed flags from AddRec plus loop invariants
in AddRec.Start + loop invariants basing on the an assumption that
0th iteration of the loop exists. However the loop might be dead
(runtime or compile time), in this case the propagation of the flag becomes
invalid.
One of the test shows the incorrect behavior of IndVarSimplify pass
in case of nested loops.
The second test shows incorrect SCEV computation of sibling loops.
In both cases the right loop is runtime dead and incorrect SCEV is computes
for alive left loop.