diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2020-04-01 14:53:19 -0400 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2020-04-01 14:54:45 -0400 |
commit | c028472fa1f0e20cc87cfa47d87fe0dd65fea830 (patch) | |
tree | e57640c0c6cee6a0af7a66eac954b5670fcead5a /clang/lib/AST/ExprClassification.cpp | |
parent | 1148f004fa35f1b74942bb1f578763d9dd79aa4a (diff) | |
download | llvm-c028472fa1f0e20cc87cfa47d87fe0dd65fea830.zip llvm-c028472fa1f0e20cc87cfa47d87fe0dd65fea830.tar.gz llvm-c028472fa1f0e20cc87cfa47d87fe0dd65fea830.tar.bz2 |
Revert "[OPENMP50]Add initial support for OpenMP 5.0 iterator."
This reverts commit f08df464ae89972a777c0a7e299a2c153a9829d8 to fix the
bug with serialization support for iterator expression.
Diffstat (limited to 'clang/lib/AST/ExprClassification.cpp')
-rw-r--r-- | clang/lib/AST/ExprClassification.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/AST/ExprClassification.cpp b/clang/lib/AST/ExprClassification.cpp index 8587a47..4505626 100644 --- a/clang/lib/AST/ExprClassification.cpp +++ b/clang/lib/AST/ExprClassification.cpp @@ -141,7 +141,6 @@ static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E) { case Expr::MSPropertySubscriptExprClass: case Expr::OMPArraySectionExprClass: case Expr::OMPArrayShapingExprClass: - case Expr::OMPIteratorExprClass: return Cl::CL_LValue; // C99 6.5.2.5p5 says that compound literals are lvalues. |