| 79 | } |
| 80 | |
| 81 | string CaseExpr::DebugString() const { |
| 82 | stringstream out; |
| 83 | out << "CaseExpr(has_case_expr=" << has_case_expr_ |
| 84 | << " has_else_expr=" << has_else_expr_ |
| 85 | << " " << ScalarExpr::DebugString() << ")"; |
| 86 | return out.str(); |
| 87 | } |
| 88 | |
| 89 | // Sample IR output when there is a case expression and else expression |
| 90 | // define i16 @CaseExpr(%"class.impala::ScalarExprEvaluator"* %context, |
nothing calls this directly
no test coverage detected