--------------------------------------------------------------
| 1550 | |
| 1551 | // -------------------------------------------------------------- |
| 1552 | void |
| 1553 | OutputGlobalVariables(std::ostream &out) |
| 1554 | { |
| 1555 | output_comment_line(out, "--- GLOBAL VARIABLES ---"); |
| 1556 | vector<Variable *>& vars = *(VariableSelector::GetGlobalVariables()); |
| 1557 | bool access_once = CGOptions::access_once(); |
| 1558 | |
| 1559 | CGOptions::access_once(false); |
| 1560 | OutputVariableList(vars, out); |
| 1561 | CGOptions::access_once(access_once); |
| 1562 | } |
| 1563 | |
| 1564 | void |
| 1565 | OutputGlobalVariablesDecls(std::ostream &out, std::string prefix) |
no test coverage detected