================
@@ -10926,6 +10965,10 @@ QualType ASTContext::mergeTypes(QualType LHS, QualType 
RHS, bool OfBlockPointer,
     assert(LHS != RHS &&
            "Equivalent pipe types should have already been handled!");
     return {};
+  case Type::ArrayParameter:
+    assert(LHS != RHS &&
+           "Equivalent pipe types should have already been handled!");
+    return LHS;
----------------
efriedma-quic wrote:

`return {};`?  Also, assertion text is wrong.

You could try to merge like we do for ConstantArray... but it's unlikely to 
matter, since HLSL is a C++ variant (and type merging is basically a C-only 
thing).

https://github.com/llvm/llvm-project/pull/79382
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to