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

Function compiler_init

src/engine/function.cpp:1445–1454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1443} compiler;
1444
1445static void compiler_init( compiler * c )
1446{
1447 dynamic_array_init( c->code );
1448 dynamic_array_init( c->constants );
1449 dynamic_array_init( c->labels );
1450 dynamic_array_init( c->rules );
1451 dynamic_array_init( c->actions );
1452 dynamic_array_init( c->cleanups );
1453 dynamic_array_init( c->loop_scopes );
1454}
1455
1456static void compiler_free( compiler * c )
1457{

Callers 2

function_compileFunction · 0.85
function_compile_actionsFunction · 0.85

Calls 1

dynamic_array_initFunction · 0.85

Tested by

no test coverage detected