* */
| 221 | * |
| 222 | */ |
| 223 | void |
| 224 | Lhs::Output(std::ostream &out) const |
| 225 | { |
| 226 | ExpressionVariable ev(var, type); |
| 227 | if (var.is_volatile() && CGOptions::wrap_volatiles()) { |
| 228 | out << "VOL_LVAL("; |
| 229 | ev.Output(out); |
| 230 | out << ", "; |
| 231 | type->Output(out); |
| 232 | out << ")"; |
| 233 | } else { |
| 234 | ev.Output(out); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | bool |
| 239 | Lhs::is_volatile(void) const |