* */
| 384 | * |
| 385 | */ |
| 386 | Function::Function(const string &name, const Type *return_type) |
| 387 | : name(name), |
| 388 | return_type(return_type), |
| 389 | body(0), |
| 390 | fact_changed(false), |
| 391 | union_field_read(false), |
| 392 | is_inlined(false), |
| 393 | is_builtin(false), |
| 394 | visited_cnt(0), |
| 395 | build_state(UNBUILT) |
| 396 | { |
| 397 | FuncList.push_back(this); // Add to global list of functions. |
| 398 | } |
| 399 | |
| 400 | Function::Function(const string &name, const Type *return_type, bool builtin) |
| 401 | : name(name), |
nothing calls this directly
no outgoing calls
no test coverage detected