diff options
author | John McCall <rjmccall@apple.com> | 2010-11-30 17:58:55 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-11-30 17:58:55 +0000 |
commit | 20fbe7c4772d537c1f779b1ff89cbb57d1d9afff (patch) | |
tree | 3397a078405505083393d33587047acb8ed3f0ac /lib/AST/Expr.cpp | |
parent | 67aba816901503d9cf7ba699525fa62cc7f8e5e4 (diff) |
L-value to r-value conversion is not ready for prime-time.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Expr.cpp')
-rw-r--r-- | lib/AST/Expr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index 6e56603c53..3a112a7e07 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -822,8 +822,6 @@ const char *CastExpr::getCastKindName() const { return "BitCast"; case CK_LValueBitCast: return "LValueBitCast"; - case CK_LValueToRValue: - return "LValueToRValue"; case CK_NoOp: return "NoOp"; case CK_BaseToDerived: |