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

Function compiler_init

src/engine/function.c:1308–1317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1306} compiler;
1307
1308static void compiler_init( compiler * c )
1309{
1310 dynamic_array_init( c->code );
1311 dynamic_array_init( c->constants );
1312 dynamic_array_init( c->labels );
1313 dynamic_array_init( c->rules );
1314 dynamic_array_init( c->actions );
1315 dynamic_array_init( c->cleanups );
1316 dynamic_array_init( c->loop_scopes );
1317}
1318
1319static void compiler_free( compiler * c )
1320{

Callers 2

function_compileFunction · 0.85
function_compile_actionsFunction · 0.85

Calls 1

dynamic_array_initFunction · 0.85

Tested by

no test coverage detected