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

References

tools/clang/lib/CodeGen/CGCall.cpp
 2171   if (value->getType() == varType) return value;
 2173   assert((varType->isIntegerTy() || varType->isFloatingPointTy())
 2173   assert((varType->isIntegerTy() || varType->isFloatingPointTy())
 2176   if (isa<llvm::IntegerType>(varType))
 2177     return CGF.Builder.CreateTrunc(value, varType, "arg.unpromote");
 2179   return CGF.Builder.CreateFPCast(value, varType, "arg.unpromote");