reimplement addition of complex numbers.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41215 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index eaf2b1d..ca391b0 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -249,7 +249,8 @@
   
   /// EmitLoadOfComplex - Given an RValue reference for a complex, emit code to
   /// load the real and imaginary pieces, returning them as Real/Imag.
-  void EmitLoadOfComplex(RValue V, llvm::Value *&Real, llvm::Value *&Imag);
+  void EmitLoadOfComplex(llvm::Value *SrcPtr, llvm::Value *&Real,
+                         llvm::Value *&Imag);
   
   /// EmitStoreOfComplex - Store the specified real/imag parts into the
   /// specified value pointer.