[Mlir-commits] [mlir] [mlir][DataLayout] Add a default memory space entry to the data layout. (PR #127416)

Rolf Morel llvmlistbot at llvm.org
Thu Feb 27 09:42:43 PST 2025


================
@@ -318,7 +318,8 @@ combineOneSpec(DataLayoutSpecInterface spec,
            "unexpected data layout entry for built-in type");
 
     auto interface = cast<DataLayoutTypeInterface>(typeSample);
-    if (!interface.areCompatible(entriesForType.lookup(kvp.first), kvp.second))
+    if (!interface.areCompatible(entriesForType.lookup(kvp.first), kvp.second,
----------------
rolfmorel wrote:

> Also is spec here the right spec to pass? The specs are in the process of being combined at this point, right? spec is just the latest to be added, I think (it's a while since I looked at that code).

Before approving, @fabianmcg could you check that `spec` is the right spec/is in the right state to pass around?

https://github.com/llvm/llvm-project/pull/127416


More information about the Mlir-commits mailing list