diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-24 21:23:59 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-24 21:23:59 +0000 |
commit | 8a64c1c94c1e2280fbf49d0689afe563e3f4b7b1 (patch) | |
tree | ebfb3315b6457eef30c2f498faca6dad397b7bfa /clang/lib/CodeGen/CodeGenFunction.h | |
parent | c6eaea70af36c13262a0a30fcc0e37712c22331a (diff) | |
download | bcm5719-llvm-8a64c1c94c1e2280fbf49d0689afe563e3f4b7b1.tar.gz bcm5719-llvm-8a64c1c94c1e2280fbf49d0689afe563e3f4b7b1.zip |
Change CodeGenFunction::GetAddressOfDerivedClass to take a BasePath.
llvm-svn: 102273
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 0707ada38c5..c0786b8c3eb 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -793,8 +793,8 @@ public: bool NullCheckValue); llvm::Value *GetAddressOfDerivedClass(llvm::Value *Value, - const CXXRecordDecl *ClassDecl, const CXXRecordDecl *DerivedClassDecl, + const CXXBaseSpecifierArray &BasePath, bool NullCheckValue); llvm::Value *GetVirtualBaseClassOffset(llvm::Value *This, |