MCPcopy Create free account
hub / github.com/csmith-project/csmith / init_map

Method init_map

src/PartialExpander.cpp:53–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51}
52
53void
54PartialExpander::init_map(map<eStatementType, bool> &m, bool value)
55{
56 m[eAssign] = value;
57 m[eBlock] = value;
58 m[eFor] = value;
59 m[eIfElse] = value;
60 m[eInvoke] = value;
61 m[eReturn] = value;
62 m[MAX_STATEMENT_TYPE] = value;
63}
64
65bool
66PartialExpander::init_partial_expander(const std::string &options)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected