diff options
author | Alexis Hunt <alercah@gmail.com> | 2010-05-05 15:24:00 +0000 |
---|---|---|
committer | Alexis Hunt <alercah@gmail.com> | 2010-05-05 15:24:00 +0000 |
commit | 656bb314d99d6da5f4bab00216fbfaf50808a368 (patch) | |
tree | bc5b0fc287caef3216049ce20e6a2a27722654fd /clang/lib/AST/StmtPrinter.cpp | |
parent | a8136cc40820f29cdd1a6fc84a75eeeba6737abc (diff) | |
download | bcm5719-llvm-656bb314d99d6da5f4bab00216fbfaf50808a368.tar.gz bcm5719-llvm-656bb314d99d6da5f4bab00216fbfaf50808a368.zip |
Reapplying patch to change StmtNodes.def to StmtNodes.td, this time
with no whitespace. This will allow statements to be referred to in
attribute TableGen files.
llvm-svn: 103087
Diffstat (limited to 'clang/lib/AST/StmtPrinter.cpp')
-rw-r--r-- | clang/lib/AST/StmtPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/StmtPrinter.cpp b/clang/lib/AST/StmtPrinter.cpp index 52f627d449e..9bef49c3984 100644 --- a/clang/lib/AST/StmtPrinter.cpp +++ b/clang/lib/AST/StmtPrinter.cpp @@ -89,7 +89,7 @@ namespace { void VisitStmt(Stmt *Node); #define STMT(CLASS, PARENT) \ void Visit##CLASS(CLASS *Node); -#include "clang/AST/StmtNodes.def" +#include "clang/AST/StmtNodes.inc" }; } |