| 206 | } |
| 207 | |
| 208 | std::string GenAlign(Address align, Opcode opc) const { |
| 209 | return opc.IsNaturallyAligned(align) ? "" : cat("@", std::to_string(align)); |
| 210 | } |
| 211 | |
| 212 | std::string GenTypeDecl(const std::string& name) const { |
| 213 | auto it = vars.find(name); |
no test coverage detected