| 5587 | } |
| 5588 | |
| 5589 | void JitArmV8CodeGen::StartElse() { |
| 5590 | Label label = compiler.new_label(); |
| 5591 | compiler.b(label); |
| 5592 | compiler.bind(ifLabels.back()); |
| 5593 | ifLabels.pop_back(); |
| 5594 | ifLabels.push_back(label); |
| 5595 | } |
| 5596 | |
| 5597 | void JitArmV8CodeGen::EndIf() { |
| 5598 | compiler.bind(ifLabels.back()); |