From 08028d68a90bbc47464562a745e33fa10256a7d3 Mon Sep 17 00:00:00 2001 From: Sander de Smalen Date: Sun, 12 Jan 2025 22:06:28 +0000 Subject: [PATCH] [Clang] Fix buildbot failure introduced by #121788 Silences 'enumeration not handled in switch' warning, which causes buildbot failures with -Werror. --- clang/lib/AST/TypePrinter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/lib/AST/TypePrinter.cpp b/clang/lib/AST/TypePrinter.cpp index 9590145ffbd5ae4..a850410ffc84686 100644 --- a/clang/lib/AST/TypePrinter.cpp +++ b/clang/lib/AST/TypePrinter.cpp @@ -2002,6 +2002,7 @@ void TypePrinter::printAttributedAfter(const AttributedType *T, case attr::CmseNSCall: case attr::AnnotateType: case attr::WebAssemblyFuncref: + case attr::ArmAgnostic: case attr::ArmStreaming: case attr::ArmStreamingCompatible: case attr::ArmIn: