diff options
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r-- | CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h index eaf2b1ded2..ca391b01ad 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -249,7 +249,8 @@ public: /// 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. |