| 96 | /* ===================== select function ===================== */ |
| 97 | |
| 98 | mlir::Value ValueBuilderHelper::select( |
| 99 | mlir::Value cond, mlir::Value true_val, mlir::Value false_val) { |
| 100 | return m_builder.create<mlir::SelectOp>(m_location, cond, true_val, false_val); |
| 101 | } |
| 102 | |
| 103 | /* ===================== helper functions ===================== */ |
| 104 |
no outgoing calls
no test coverage detected