| 48 | } |
| 49 | |
| 50 | MlirTypeID mlirCudaTilePointerTypeGetTypeID(void) { |
| 51 | return wrap(PointerType::getTypeID()); |
| 52 | } |
| 53 | |
| 54 | MlirType mlirCudaTilePointerTypeGet(MlirContext ctx, MlirType pointeeType) { |
| 55 | return wrap(PointerType::get(unwrap(ctx), unwrap(pointeeType))); |
nothing calls this directly
no outgoing calls
no test coverage detected