diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-07-13 23:17:26 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-07-13 23:17:26 +0000 |
commit | 51954276ccee058ba3e82f41fb09e77da39d2d85 (patch) | |
tree | 52575c26d66923f3ec33a8f8d307ca4faf4cd262 /clang/lib/AST/Expr.cpp | |
parent | 11e8f3ba377445a5d218b69756535cbf6034298b (diff) | |
download | bcm5719-llvm-51954276ccee058ba3e82f41fb09e77da39d2d85.tar.gz bcm5719-llvm-51954276ccee058ba3e82f41fb09e77da39d2d85.zip |
Introduce a new cast kind for an "lvalue bitcast", which handles
reinterpret_casts (possibly indirectly via C-style/functional casts)
on values, e.g.,
int i;
reinterpret_cast<short&>(i);
The IR generated for this is essentially the same as for
*reinterpret_cast<short*>(&i).
Fixes PR6437, PR7593, and PR7344.
llvm-svn: 108294
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 bd97b886fe1..6524a312dc8 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -684,6 +684,8 @@ const char *CastExpr::getCastKindName() const { return "Unknown"; case CastExpr::CK_BitCast: return "BitCast"; + case CastExpr::CK_LValueBitCast: + return "LValueBitCast"; case CastExpr::CK_NoOp: return "NoOp"; case CastExpr::CK_BaseToDerived: |