Matthias Springer fb4c05cf03
[mlir][IR] Add implicit conversion operator to TypedValue (#164621)
Allow implicit conversion from `TypedValue<B>` to `TypedValue<A>` if `B`
is assignable to `A`.

Example:
```c++
TypedValue<MemRefType> val;
TypedValue<ShapedType> shapedVal = val;  // this is now valid
```
2025-10-23 09:24:30 +02:00
..