If the instruction in the Loop use CTR, we won't convert loop to CTR loop.
For PPC BinaryOperator of fp128 will become libcall, we shouldn't convert loop to
CTR loop if the loop contain libCall.
But currently, in the PPCTTIImpl::mightUseCTR() function, we only deal with
BinaryOperator for ppc_fp128, don't deal with the fp128.
This bug has caused assertion error, when the loop we want to convert it to CTL loop
contains BinaryOperator for ppc_fp128 like %mul = fmul fp128 %0, %1.