| 35 | } |
| 36 | |
| 37 | void CLikeCodeGen::PrintDef(StringBuilder & sbCode, ILType* type, const String & name) |
| 38 | { |
| 39 | PrintType(sbCode, type); |
| 40 | sbCode << " "; |
| 41 | sbCode << name; |
| 42 | if (name.Length() == 0) |
| 43 | throw InvalidProgramException("unnamed instruction."); |
| 44 | } |
| 45 | |
| 46 | String CLikeCodeGen::GetFuncOriginalName(const String & name) |
| 47 | { |
no test coverage detected