From: Chandler Carruth Date: Sat, 23 Oct 2010 08:21:37 +0000 (+0000) Subject: Update to use 'LLVM_*' macro names for attributes. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61e38285c54d5f3cad610cb421fad1504373e082;p=clang 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 --- 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);