diff options
| author | John McCall <rjmccall@apple.com> | 2010-12-01 04:43:34 +0000 |
|---|---|---|
| committer | John McCall <rjmccall@apple.com> | 2010-12-01 04:43:34 +0000 |
| commit | f3735e01cee29798fd40f6de55c3a3d72a335420 (patch) | |
| tree | fe6d8b5c61323eb4b5d9e3a2af2b27adbd68e8b1 /clang/lib/AST/Expr.cpp | |
| parent | c7a020af87070a4b14358f6cee5f536b8ddaec7f (diff) | |
| download | bcm5719-llvm-f3735e01cee29798fd40f6de55c3a3d72a335420.tar.gz bcm5719-llvm-f3735e01cee29798fd40f6de55c3a3d72a335420.zip | |
Restore the lvalue-to-rvalue conversion patch with a minimal fix.
llvm-svn: 120555
Diffstat (limited to 'clang/lib/AST/Expr.cpp')
| -rw-r--r-- | clang/lib/AST/Expr.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index 3a112a7e073..6e56603c53e 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -822,6 +822,8 @@ 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: |

