| 1562 | } |
| 1563 | |
| 1564 | void |
| 1565 | OutputGlobalVariablesDecls(std::ostream &out, std::string prefix) |
| 1566 | { |
| 1567 | output_comment_line(out, "--- GLOBAL VARIABLES ---"); |
| 1568 | |
| 1569 | bool access_once = CGOptions::access_once(); |
| 1570 | CGOptions::access_once(false); |
| 1571 | OutputVariableDeclList(*VariableSelector::GetGlobalVariables(), out, prefix); |
| 1572 | CGOptions::access_once(access_once); |
| 1573 | } |
| 1574 | |
| 1575 | void |
| 1576 | HashGlobalVariables(std::ostream &out) |
no test coverage detected