================
@@ -41,6 +41,15 @@ def __init__(
)
+def get_desc_op(
+ target: Value,
+ *,
+ loc=None,
+ ip=None,
+) -> GetDescOp:
+ return GetDescOp(target, loc=loc, ip=ip)
----------------
tkarna wrote:
These are updated now
https://github.com/llvm/llvm-project/pull/167342