diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-17 17:20:53 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-17 17:20:53 +0000 |
commit | a566efbec9d971deee9e61db100ac97f9256cea4 (patch) | |
tree | be7595225ebdb855b7ff3dbf57c8eef00820f2d8 /clang/lib/AST/StmtPrinter.cpp | |
parent | c200b1256343938053658a784c6f3262fd125c25 (diff) | |
download | bcm5719-llvm-a566efbec9d971deee9e61db100ac97f9256cea4.tar.gz bcm5719-llvm-a566efbec9d971deee9e61db100ac97f9256cea4.zip |
Revert "[OPENMP] Initial support for '#pragma omp for'."
This reverts commit r211096. Looks like it broke the msvc build:
SemaOpenMP.cpp(140) : error C4519: default template arguments are only allowed on a class template
llvm-svn: 211113
Diffstat (limited to 'clang/lib/AST/StmtPrinter.cpp')
-rw-r--r-- | clang/lib/AST/StmtPrinter.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/AST/StmtPrinter.cpp b/clang/lib/AST/StmtPrinter.cpp index 16330a46fe0..fdf2d545019 100644 --- a/clang/lib/AST/StmtPrinter.cpp +++ b/clang/lib/AST/StmtPrinter.cpp @@ -764,11 +764,6 @@ void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { PrintOMPExecutableDirective(Node); } -void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { - Indent() << "#pragma omp for "; - PrintOMPExecutableDirective(Node); -} - //===----------------------------------------------------------------------===// // Expr printing methods. //===----------------------------------------------------------------------===// |