| 520 | |
| 521 | |
| 522 | void TieAsSubExp(LogicExp* parent, LogicExp* item) { |
| 523 | parent->subexp = item; |
| 524 | while (item) { |
| 525 | item->parent = parent; |
| 526 | item = item->next; |
| 527 | } |
| 528 | } |
| 529 | |
| 530 | LogicExp* MakeBoolean(GluaDecompileContextP ctx, Function* F, int* thenaddr, int* endif) { |
| 531 | int i; |