MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / make_list

Function make_list

src/gpre/exp.cpp:995–1007  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

993//
994
995static gpre_nod* make_list( gpre_lls* stack)
996{
997 USHORT count = 0;
998 for (const gpre_lls* temp = stack; temp; temp = temp->lls_next)
999 ++count;
1000
1001 gpre_nod* node = MSC_node(nod_list, count);
1002
1003 for (gpre_nod** ptr = node->nod_arg + count; stack;)
1004 *--ptr = MSC_pop(&stack);
1005
1006 return node;
1007}
1008
1009
1010//____________________________________________________________

Callers 1

par_udfFunction · 0.85

Calls 2

MSC_nodeFunction · 0.85
MSC_popFunction · 0.85

Tested by

no test coverage detected