MCPcopy Create free account
hub / github.com/boostorg/build / compiler_init

Function compiler_init

v2/engine/function.c:1337–1344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1335} compiler;
1336
1337static void compiler_init( compiler * c )
1338{
1339 dynamic_array_init( c->code );
1340 dynamic_array_init( c->constants );
1341 dynamic_array_init( c->labels );
1342 dynamic_array_init( c->rules );
1343 dynamic_array_init( c->actions );
1344}
1345
1346static void compiler_free( compiler * c )
1347{

Callers 2

function_compileFunction · 0.85
function_compile_actionsFunction · 0.85

Calls 1

dynamic_array_initFunction · 0.85

Tested by

no test coverage detected