[Mlir-commits] [mlir] [mlir][emitc] Remove deprecated apply op (PR #203712)
Gil Rapaport
llvmlistbot at llvm.org
Mon Jun 15 03:46:50 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; })
----------------
aniragil wrote:
No, dereferenceOp is at line 104/103 (it's after CmpOp's long case which seems like it's terminating the switch).
Thanks @marbre !
https://github.com/llvm/llvm-project/pull/203712
More information about the Mlir-commits
mailing list