diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2011-09-02 18:39:40 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2011-09-02 18:39:40 +0000 |
commit | da8e571ce443304665de1a1713980e7f2a2dbc54 (patch) | |
tree | e8f55b808be56bb48130594de522d5961dcd372d /lib/CodeGen/CGExprComplex.cpp | |
parent | cc2fca2ba2716293204901b8d2393428b965f12a (diff) |
blocks: Support capturing complex variable in block.
// rdar://10033896
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139020 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprComplex.cpp')
-rw-r--r-- | lib/CodeGen/CGExprComplex.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/CodeGen/CGExprComplex.cpp b/lib/CodeGen/CGExprComplex.cpp index 672721ef7f..24d0115028 100644 --- a/lib/CodeGen/CGExprComplex.cpp +++ b/lib/CodeGen/CGExprComplex.cpp @@ -311,11 +311,7 @@ void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *Ptr, //===----------------------------------------------------------------------===// ComplexPairTy ComplexExprEmitter::VisitExpr(Expr *E) { - CGF.ErrorUnsupported(E, "complex expression"); - llvm::Type *EltTy = - CGF.ConvertType(E->getType()->getAs<ComplexType>()->getElementType()); - llvm::Value *U = llvm::UndefValue::get(EltTy); - return ComplexPairTy(U, U); + return EmitLoadOfLValue(E); } ComplexPairTy ComplexExprEmitter:: |