From 61e38285c54d5f3cad610cb421fad1504373e082 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sat, 23 Oct 2010 08:21:37 +0000 Subject: [PATCH] Update to use 'LLVM_*' macro names for attributes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117201 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/StmtPrinter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/AST/StmtPrinter.cpp b/lib/AST/StmtPrinter.cpp index 51289b2273..270c9e1d1d 100644 --- a/lib/AST/StmtPrinter.cpp +++ b/lib/AST/StmtPrinter.cpp @@ -84,10 +84,10 @@ namespace { else StmtVisitor::Visit(S); } - void VisitStmt(Stmt *Node) ATTRIBUTE_UNUSED { + void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED { Indent() << "<>\n"; } - void VisitExpr(Expr *Node) ATTRIBUTE_UNUSED { + void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED { OS << "<>"; } void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node); -- 2.40.0