| 189 | } |
| 190 | |
| 191 | void PushSelectDeps(const SelectExpr* select_expr, |
| 192 | std::stack<StackRecord>* stack) { |
| 193 | if (select_expr->has_operand()) { |
| 194 | stack->push(StackRecord(&select_expr->operand())); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | void PushCallDeps(const CallExpr* call_expr, const Expr* expr, |
| 199 | std::stack<StackRecord>* stack) { |
no test coverage detected