| 689 | } |
| 690 | |
| 691 | void Variable::OutputDecl(std::ostream &out) const |
| 692 | { |
| 693 | // force global variables to be static if necessary |
| 694 | if (CGOptions::force_globals_static() && is_global()) { |
| 695 | out << "static "; |
| 696 | } |
| 697 | output_qualified_type(out); |
| 698 | out << get_actual_name(); |
| 699 | } |
| 700 | |
| 701 | std::string |
| 702 | Variable::get_actual_name() const |
no outgoing calls
no test coverage detected