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

References

lib/Transforms/Utils/BuildLibCalls.cpp
 1195   Module *M = B.GetInsertBlock()->getModule();
 1197   FunctionCallee F = M->getOrInsertFunction(FPutcUnlockedName, B.getInt32Ty(),
 1198                                             B.getInt32Ty(), File->getType());
 1201   Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/ true, "chari");
 1201   Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/ true, "chari");
 1202   CallInst *CI = B.CreateCall(F, {Char, File}, FPutcUnlockedName);