Update to use 'LLVM_*' macro names for attributes.

llvm-svn: 117201
This commit is contained in:
Chandler Carruth 2010-10-23 08:21:37 +00:00
parent 88c54b82c1
commit b7967b91c9
1 changed files with 2 additions and 2 deletions

View 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);