[clang] [HLSL] Implement array temporary support (PR #79382)
Eli Friedman via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 29 10:45:25 PDT 2024
================
@@ -2331,6 +2332,11 @@ void CodeGenFunction::EmitVariablyModifiedType(QualType type) {
type = cast<DecayedType>(ty)->getPointeeType();
break;
+ case Type::ArrayParameter:
----------------
efriedma-quic wrote:
Can we just use the existing "case" for ConstantArray?
https://github.com/llvm/llvm-project/pull/79382
More information about the cfe-commits
mailing list