| 35 | /// a "null" type. |
| 36 | template <typename T, typename... ParamsT> |
| 37 | static T getCheckedType(MLIRContext *ctx, ParamsT &&...params) { |
| 38 | return T::getChecked([&] { return emitError(UnknownLoc::get(ctx)); }, ctx, |
| 39 | std::forward<ParamsT>(params)...); |
| 40 | } |
| 41 | |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | // PointerType |
nothing calls this directly
no outgoing calls
no test coverage detected