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

Function compile_new_label

v2/engine/function.c:1364–1372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1362}
1363
1364static int compile_new_label( compiler * c )
1365{
1366 int result = c->labels->size;
1367 struct label_info info;
1368 info.absolute_position = -1;
1369 dynamic_array_init( info.uses );
1370 dynamic_array_push( c->labels, info );
1371 return result;
1372}
1373
1374static void compile_set_label( compiler * c, int label )
1375{

Callers 2

compile_conditionFunction · 0.85
compile_parseFunction · 0.85

Calls 1

dynamic_array_initFunction · 0.85

Tested by

no test coverage detected