aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2013-07-19 08:14:45 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2013-07-19 08:14:45 +0000
commit03e8746f90f43cb837e1a42fa290ff61ea253782 (patch)
tree3800eb01050b51c68124fc0c2d7e3244f4cd2940 /clang/lib/CodeGen/CodeGenFunction.h
parent90a735d606491fc9cafc89bbe13d1f144fa70e7f (diff)
downloadllvm-03e8746f90f43cb837e1a42fa290ff61ea253782.zip
llvm-03e8746f90f43cb837e1a42fa290ff61ea253782.tar.gz
llvm-03e8746f90f43cb837e1a42fa290ff61ea253782.tar.bz2
Simplify the CodeGenFunction::Build*Virtual*Call family of functions
llvm-svn: 186657
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r--clang/lib/CodeGen/CodeGenFunction.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h
index 1b62048..bd729205 100644
--- a/clang/lib/CodeGen/CodeGenFunction.h
+++ b/clang/lib/CodeGen/CodeGenFunction.h
@@ -2103,10 +2103,8 @@ public:
void EmitNoreturnRuntimeCallOrInvoke(llvm::Value *callee,
ArrayRef<llvm::Value*> args);
- llvm::Value *BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This,
+ llvm::Value *BuildVirtualCall(GlobalDecl GD, llvm::Value *This,
llvm::Type *Ty);
- llvm::Value *BuildVirtualCall(const CXXDestructorDecl *DD, CXXDtorType Type,
- llvm::Value *This, llvm::Type *Ty);
llvm::Value *BuildAppleKextVirtualCall(const CXXMethodDecl *MD,
NestedNameSpecifier *Qual,
llvm::Type *Ty);