]> granicus.if.org Git - clang/commitdiff
revert patch in r139020
authorFariborz Jahanian <fjahanian@apple.com>
Fri, 2 Sep 2011 20:03:16 +0000 (20:03 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Fri, 2 Sep 2011 20:03:16 +0000 (20:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139029 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGExprComplex.cpp
test/CodeGen/capture-complex-expr-block.c [deleted file]

index 24d01150288563f9468f9d26fc68ad66e99a6120..1a27d1322bc60b5c7287262e66ebdf29f427c5e2 100644 (file)
@@ -311,7 +311,11 @@ void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *Ptr,
 //===----------------------------------------------------------------------===//
 
 ComplexPairTy ComplexExprEmitter::VisitExpr(Expr *E) {
-  return EmitLoadOfLValue(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);
 }
 
 ComplexPairTy ComplexExprEmitter::
diff --git a/test/CodeGen/capture-complex-expr-block.c b/test/CodeGen/capture-complex-expr-block.c
deleted file mode 100644 (file)
index 17d3cc5..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// RUN: %clang_cc1 %s -emit-llvm -o - -fblocks -triple x86_64-apple-darwin10 | FileCheck %s
-// rdar://10033986
-
-int main ()
-{
-    _Complex double c;
-    ^() {
-      _Complex double z;
-      z = z + c;
-    };
-    return 0;
-}
-
-// CHECK: define internal void @__main_block_invoke_0
-// CHECK:  [[C1:%.*]] = alloca { double, double }, align 8
-// CHECK:  [[C1]].realp = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 0
-// CHECK-NEXT:  [[C1]].real = load double* [[C1]].realp
-// CHECK-NEXT:  [[C1]].imagp = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 1
-// CHECK-NEXT:  [[C1]].imag = load double* [[C1]].imagp