| 317 | } |
| 318 | |
| 319 | void ExprDecomposer::PushConditionEntry(const IfNode& node) { |
| 320 | std::unique_ptr<IfStackEntry> entry(new IfStackEntry(node, kStackEntryCondition)); |
| 321 | if_entries_stack_.emplace(std::move(entry)); |
| 322 | } |
| 323 | |
| 324 | void ExprDecomposer::PopConditionEntry(const IfNode& node) { |
| 325 | DCHECK_EQ(if_entries_stack_.empty(), false) << "PopConditionEntry: found empty stack"; |