diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-07-07 23:37:33 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-07-07 23:37:33 +0000 |
commit | 84745677f64863e025a6733cb29d0b94bc3a6ae2 (patch) | |
tree | 23d1d9df202e3fdbb6e96c9a98374d1c39cce948 /lib/AST/ExprClassification.cpp | |
parent | d80f786689d608e5c22d6e1045884de7aff76c40 (diff) |
Revert r107828 and r107827, the fix for PR7556, which seems to be
breaking bootstrap on Linux.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107837 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/ExprClassification.cpp')
-rw-r--r-- | lib/AST/ExprClassification.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/ExprClassification.cpp b/lib/AST/ExprClassification.cpp index 60ac347c50..4629500848 100644 --- a/lib/AST/ExprClassification.cpp +++ b/lib/AST/ExprClassification.cpp @@ -205,7 +205,7 @@ static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E) { // Some C++ expressions are always class temporaries. case Expr::CXXConstructExprClass: case Expr::CXXTemporaryObjectExprClass: - case Expr::CXXScalarValueInitExprClass: + case Expr::CXXZeroInitValueExprClass: return Cl::CL_ClassTemporary; // Everything we haven't handled is a prvalue. |