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

Function compile_new_label

src/engine/function.cpp:1476–1484  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1474}
1475
1476static int32_t compile_new_label( compiler * c )
1477{
1478 int32_t result = c->labels->size;
1479 struct label_info info;
1480 info.absolute_position = -1;
1481 dynamic_array_init( info.uses );
1482 dynamic_array_push( c->labels, info );
1483 return result;
1484}
1485
1486static void compile_set_label( compiler * c, int32_t label )
1487{

Callers 2

compile_conditionFunction · 0.85
compile_parseFunction · 0.85

Calls 1

dynamic_array_initFunction · 0.85

Tested by

no test coverage detected