From 84e5ae201f630c4eaddd861e1fe1fe1741126e0f Mon Sep 17 00:00:00 2001 From: Andy Kaylor Date: Wed, 30 Jul 2025 16:19:17 -0700 Subject: [PATCH] [CIR] Fix fallthrough warning This fixes a warning about an unannotated fallthrough. --- clang/lib/CIR/CodeGen/CIRGenFunction.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/lib/CIR/CodeGen/CIRGenFunction.cpp b/clang/lib/CIR/CodeGen/CIRGenFunction.cpp index c65d0254bf8e6..3e9de17e7a85f 100644 --- a/clang/lib/CIR/CodeGen/CIRGenFunction.cpp +++ b/clang/lib/CIR/CodeGen/CIRGenFunction.cpp @@ -943,6 +943,7 @@ void CIRGenFunction::emitVariablyModifiedType(QualType type) { case Type::HLSLInlineSpirv: case Type::PredefinedSugar: cgm.errorNYI("CIRGenFunction::emitVariablyModifiedType"); + break; #define TYPE(Class, Base) #define ABSTRACT_TYPE(Class, Base)