| 66 | #include "FactMgr.h" |
| 67 | |
| 68 | Reducer::Reducer(string fname) |
| 69 | : dump_block_entry(false), |
| 70 | dump_all_block_info(false), |
| 71 | dump_monitored_var(false), |
| 72 | dump_dropped_params(false), |
| 73 | drop_params(false), |
| 74 | rewrite_calls_inside(NULL), |
| 75 | reduce_binaries(false), |
| 76 | output_if_ids(false), |
| 77 | monitored_var(NULL), |
| 78 | monitored_func(NULL), |
| 79 | monitored_call_id(""), |
| 80 | dump_stms_in_blocks(NULL), |
| 81 | configured(false), |
| 82 | fname_(fname) |
| 83 | { |
| 84 | // nothing else to do |
| 85 | } |
| 86 | |
| 87 | Reducer::~Reducer(void) |
| 88 | { |
nothing calls this directly
no outgoing calls
no test coverage detected