| 1300 | } |
| 1301 | |
| 1302 | void DeclareVariable(GluaDecompileContextP ctx, Function* F, std::string name, int reg) { |
| 1303 | IS_VARIABLE(reg) = 1; |
| 1304 | if (F->R[reg].length()>0) { |
| 1305 | F->R[reg].clear(); |
| 1306 | } |
| 1307 | F->R[reg] = name; |
| 1308 | F->Rprio[reg] = 0; |
| 1309 | UnsetPending(ctx, F, reg); |
| 1310 | if (ctx->error.length()>0) return; |
| 1311 | } |
| 1312 | |
| 1313 | void OutputAssignments(GluaDecompileContextP ctx, Function* F) { |
| 1314 | int i, srcs; |
no test coverage detected