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

References

lib/Transforms/Utils/SimplifyLibCalls.cpp
 1009     unsigned PrefAlignment = DL.getPrefTypeAlignment(IntType);
 1014       LHSC = ConstantExpr::getBitCast(LHSC, IntType->getPointerTo());
 1015       LHSV = ConstantFoldLoadFromConstPtr(LHSC, IntType, DL);
 1019       RHSC = ConstantExpr::getBitCast(RHSC, IntType->getPointerTo());
 1020       RHSV = ConstantFoldLoadFromConstPtr(RHSC, IntType, DL);
 1029             IntType->getPointerTo(LHS->getType()->getPointerAddressSpace());
 1030         LHSV = B.CreateLoad(IntType, B.CreateBitCast(LHS, LHSPtrTy), "lhsv");
 1034             IntType->getPointerTo(RHS->getType()->getPointerAddressSpace());
 1035         RHSV = B.CreateLoad(IntType, B.CreateBitCast(RHS, RHSPtrTy), "rhsv");