]> granicus.if.org Git - clang/commitdiff
Update to use 'LLVM_*' macro names for attributes.
authorChandler Carruth <chandlerc@gmail.com>
Sat, 23 Oct 2010 08:21:37 +0000 (08:21 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sat, 23 Oct 2010 08:21:37 +0000 (08:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117201 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/StmtPrinter.cpp

index 51289b22736c00d44cfde43d9004c79228ddd7dd..270c9e1d1ddb028b9e5379599c8518afba180ab2 100644 (file)
@@ -84,10 +84,10 @@ namespace  {
       else StmtVisitor<StmtPrinter>::Visit(S);
     }
     
-    void VisitStmt(Stmt *Node) ATTRIBUTE_UNUSED {
+    void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
       Indent() << "<<unknown stmt type>>\n";
     }
-    void VisitExpr(Expr *Node) ATTRIBUTE_UNUSED {
+    void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED {
       OS << "<<unknown expr type>>";
     }
     void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node);