reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Utils/SimplifyLibCalls.cpp
 2206   Value *V = B.CreateCall(F, {Op, B.getTrue()}, "cttz");
 2206   Value *V = B.CreateCall(F, {Op, B.getTrue()}, "cttz");
 2207   V = B.CreateAdd(V, ConstantInt::get(V->getType(), 1));
 2208   V = B.CreateIntCast(V, B.getInt32Ty(), false);
 2208   V = B.CreateIntCast(V, B.getInt32Ty(), false);
 2210   Value *Cond = B.CreateICmpNE(Op, Constant::getNullValue(ArgType));
 2211   return B.CreateSelect(Cond, V, B.getInt32(0));
 2211   return B.CreateSelect(Cond, V, B.getInt32(0));