summaryrefslogtreecommitdiff
path: root/clang/lib/AST/TypePrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/AST/TypePrinter.cpp')
-rw-r--r--clang/lib/AST/TypePrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/TypePrinter.cpp b/clang/lib/AST/TypePrinter.cpp
index 5c2464904485..2d06faeca182 100644
--- a/clang/lib/AST/TypePrinter.cpp
+++ b/clang/lib/AST/TypePrinter.cpp
@@ -1812,7 +1812,7 @@ void TypePrinter::printAttributedAfter(const AttributedType *T,
void TypePrinter::printBTFTagAttributedBefore(const BTFTagAttributedType *T,
raw_ostream &OS) {
printBefore(T->getWrappedType(), OS);
- OS << " btf_type_tag(" << T->getAttr()->getBTFTypeTag() << ")";
+ OS << " __attribute__((btf_type_tag(\"" << T->getAttr()->getBTFTypeTag() << "\")))";
}
void TypePrinter::printBTFTagAttributedAfter(const BTFTagAttributedType *T,