You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[mlir][emitc] Support 'emitc::LValueType' in 'emitc::verbatimOp'
This PR introduces support for `emitc::LvalueType` in `emitc::VerbatimOp`,
providing a mechanism to reduce the number of operations required when
working with verbatim operations whose arguments are of type `emitc::LvalueType`.
An example of this would be:
```mlir
emitc.func @foo() {
%a = "emitc.variable"() <{value = #emitc.opaque<"1">}> : () -> !emitc.lvalue<i32>
emitc.verbatim "++{};" args %a : !emitc.lvalue<i32>
return
}
```
0 commit comments