aboutsummaryrefslogtreecommitdiff
path: root/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-21 17:28:34 +0000
committerChris Lattner <sabre@nondot.org>2007-08-21 17:28:34 +0000
commit46d7d9fac99cdc60faad5f7ff0433c4ccb5a5c25 (patch)
tree082273470648233551dea369b0a1c31841b2bbb8 /CodeGen/CodeGenFunction.h
parent756a4d88457aebb6c154a4cbb5d595fdb2e0899d (diff)
move EmitLoadOfComplex/EmitStoreOfComplex into ComplexExprEmitter.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41236 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r--CodeGen/CodeGenFunction.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index 5ece5cd41b..a0a3c610e8 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -248,16 +248,6 @@ public:
llvm::Value *EvaluateExprAsBool(const Expr *E);
- /// EmitLoadOfComplex - Given an RValue reference for a complex, emit code to
- /// load the real and imaginary pieces, returning them as Real/Imag.
- void EmitLoadOfComplex(llvm::Value *SrcPtr, llvm::Value *&Real,
- llvm::Value *&Imag);
-
- /// EmitStoreOfComplex - Store the specified real/imag parts into the
- /// specified value pointer.
- void EmitStoreOfComplex(llvm::Value *Real, llvm::Value *Imag,
- llvm::Value *ResPtr);
-
//===--------------------------------------------------------------------===//
// Conversions
//===--------------------------------------------------------------------===//