diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-11-18 00:57:03 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-11-18 00:57:03 +0000 |
commit | 24f55430c89affa4db47c7784f67dd98faae15f7 (patch) | |
tree | 6af149d7b86f329d8c82843f8da7ee36e46f13c0 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | fe81e3fb3cc0b2a45fd0dbf0d7ed077cf135535b (diff) | |
download | bcm5719-llvm-24f55430c89affa4db47c7784f67dd98faae15f7.tar.gz bcm5719-llvm-24f55430c89affa4db47c7784f67dd98faae15f7.zip |
Missing piece of r89173.
llvm-svn: 89174
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 44561473100..afb1ecdfe39 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -663,6 +663,9 @@ public: llvm::Value *EmitCXXNewExpr(const CXXNewExpr *E); void EmitCXXDeleteExpr(const CXXDeleteExpr *E); + void EmitDeleteCall(const FunctionDecl *DeleteFD, llvm::Value *Ptr, + QualType DeleteTy); + llvm::Value* EmitCXXTypeidExpr(const CXXTypeidExpr *E); llvm::Value *EmitDynamicCast(llvm::Value *V, const CXXDynamicCastExpr *DCE); |