Skip to content

Commit 79725ba

Browse files
xdoardoresistor
authored andcommitted
[CHERIoT] Add missing case for newly introduced cheriot_sealed attribute in type printer (#162)
1 parent 8d085d0 commit 79725ba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

clang/lib/AST/TypePrinter.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2132,6 +2132,9 @@ void TypePrinter::printAttributedAfter(const AttributedType *T,
21322132
case attr::CHERIOTSharedObject:
21332133
OS << "cheriot_shared_object";
21342134
break;
2135+
case attr::CHERIoTSealedType:
2136+
OS << "cheriot_sealed";
2137+
break;
21352138
case attr::FastCall: OS << "fastcall"; break;
21362139
case attr::StdCall: OS << "stdcall"; break;
21372140
case attr::ThisCall: OS << "thiscall"; break;

0 commit comments

Comments
 (0)