[Mlir-commits] [llvm] [mlir] [IR][ModRef] Introduce `errno` memory location (PR #120783)
Antonio Frighetto
llvmlistbot at llvm.org
Mon Feb 10 07:38:02 PST 2025
================
@@ -194,6 +194,10 @@ class LocationSize {
return hasValue() && getValue() == Other;
}
+ bool operator<=(const LocationSize &Other) const {
+ return Value <= Other.Value;
----------------
antoniofrighetto wrote:
Not really sure why I didn't use getValue in the first place.
https://github.com/llvm/llvm-project/pull/120783
More information about the Mlir-commits
mailing list