summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2010-10-23 08:21:37 +0000
committerChandler Carruth <chandlerc@gmail.com>2010-10-23 08:21:37 +0000
commitb7967b91c9d73e43dc55481fd4b6cf8a5d993e37 (patch)
treec18ba4382d73ca1ecb989f3b72f6ed957ce6883b
parent88c54b82c1bc7193a92769992cbd1c8b9eb8d7ff (diff)
downloadbcm5719-llvm-b7967b91c9d73e43dc55481fd4b6cf8a5d993e37.tar.gz
bcm5719-llvm-b7967b91c9d73e43dc55481fd4b6cf8a5d993e37.zip
Update to use 'LLVM_*' macro names for attributes.
llvm-svn: 117201
-rw-r--r--clang/lib/AST/StmtPrinter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/AST/StmtPrinter.cpp b/clang/lib/AST/StmtPrinter.cpp
index 51289b22736..270c9e1d1dd 100644
--- a/clang/lib/AST/StmtPrinter.cpp
+++ b/clang/lib/AST/StmtPrinter.cpp
@@ -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);
OpenPOWER on IntegriCloud