In the patch rL336172, we've sunk foldICmpUsingKnownBits down the pipeline
because it is expensive and sometimes produces instruction patterns that cannot be
analyzed by other parts of optimizer. However the method from which it is invoked
also contains a early bailout (it looks like it is needed to work around some endless
loop corner cases), in which case we don't do any transforms, including foldICmpUsingKnownBits.
There is a case where it is profitable to do foldICmpUsingKnownBits before the
early bailout. In this patch, we add its invocation to this execution path to help
the attached test.