MCPcopy Create free account
hub / github.com/beefytech/Beef / BfCompiler_Compile

Function BfCompiler_Compile

IDEHelper/Compiler/BfCompiler.cpp:9843–9851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9841}*/
9842
9843BF_EXPORT bool BF_CALLTYPE BfCompiler_Compile(BfCompiler* bfCompiler, BfPassInstance* bfPassInstance, const char* outputPath)
9844{
9845 BP_ZONE("BfCompiler_Compile");
9846
9847 SetAndRestoreValue<BfPassInstance*> prevPassInstance(bfCompiler->mPassInstance, bfPassInstance);
9848 bfCompiler->mPassInstance = bfPassInstance;
9849 bfCompiler->Compile(outputPath);
9850 return !bfCompiler->mPassInstance->HasFailed();
9851}
9852
9853BF_EXPORT void BF_CALLTYPE BfCompiler_ClearResults(BfCompiler* bfCompiler)
9854{

Callers 2

CompileMethod · 0.85
CompileThreadFunction · 0.85

Calls 2

HasFailedMethod · 0.80
CompileMethod · 0.45

Tested by

no test coverage detected