| 228 | } |
| 229 | |
| 230 | void PushSelectDeps(const Select* select_expr, const SourceInfo* source_info, |
| 231 | std::stack<StackRecord>* stack) { |
| 232 | if (select_expr->has_operand()) { |
| 233 | stack->push(StackRecord(&select_expr->operand(), source_info)); |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | void PushCallDeps(const Call* call_expr, const Expr* expr, |
| 238 | const SourceInfo* source_info, |
no test coverage detected