| 769 | } |
| 770 | |
| 771 | std::string OutputBoolean(GluaDecompileContextP ctx, Function* F, int* thenaddr, int* endif, int test) { |
| 772 | std::string result; |
| 773 | LogicExp* exp = nullptr; |
| 774 | ctx->error.clear(); |
| 775 | |
| 776 | exp = MakeBoolean(ctx, F, thenaddr, endif); |
| 777 | if (ctx->error.length()>0) goto OutputBoolean_CLEAR_HANDLER1; |
| 778 | result = WriteBoolean(exp, thenaddr, endif, test); |
| 779 | if (ctx->error.length()>0) goto OutputBoolean_CLEAR_HANDLER1; |
| 780 | |
| 781 | OutputBoolean_CLEAR_HANDLER1: |
| 782 | if (exp) DeleteLogicExpTree(exp); |
| 783 | |
| 784 | return result; |
| 785 | } |
| 786 | |
| 787 | void RawAddAstStatement(Function* F, AstStatement* stmt) { |
| 788 | if (F->released_local) { |
no test coverage detected