diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-07-15 16:39:55 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-07-15 16:39:55 +0000 |
commit | 24978863d13e12278799df62edaa2ddf33ff2fba (patch) | |
tree | b02184c30c409f230acbeafbf772a3ffe9f2a3e0 /lib/CodeGen/CGExpr.cpp | |
parent | 2bb38d0d93e56617f93091a92b2e6396c0cd0dcd (diff) |
CK_BitCast is not an lvalue bitcast any longer
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExpr.cpp')
-rw-r--r-- | lib/CodeGen/CGExpr.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index 5a4808bce9..43bab9fece 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -1816,7 +1816,6 @@ LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) { return LValue::MakeAddr(Derived, MakeQualifiers(E->getType())); } - case CastExpr::CK_BitCast: case CastExpr::CK_LValueBitCast: { // This must be a reinterpret_cast (or c-style equivalent). const ExplicitCastExpr *CE = cast<ExplicitCastExpr>(E); |