[Mlir-commits] [mlir] [mlir][emitc] Remove deprecated apply op (PR #203712)
Marius Brehler
llvmlistbot at llvm.org
Mon Jun 15 02:56:13 PDT 2026
================
@@ -74,7 +74,6 @@ static FailureOr<int> getOperatorPrecedence(Operation *operation) {
return llvm::TypeSwitch<Operation *, FailureOr<int>>(operation)
.Case([&](emitc::AddressOfOp op) { return 15; })
.Case([&](emitc::AddOp op) { return 12; })
- .Case([&](emitc::ApplyOp op) { return 15; })
----------------
marbre wrote:
Drive-by and not directly related to this change but is `DereferenceOp` missing here?
https://github.com/llvm/llvm-project/pull/203712
More information about the Mlir-commits
mailing list