| 217 | } |
| 218 | |
| 219 | void PushSelectDeps(SelectExpr* select_expr, std::stack<StackRecord>* stack) { |
| 220 | if (select_expr->has_operand()) { |
| 221 | stack->push(StackRecord(&select_expr->mutable_operand())); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | void PushCallDeps(CallExpr* call_expr, Expr* expr, |
| 226 | std::stack<StackRecord>* stack) { |
no test coverage detected