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/CodeGenModule.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/CodeGenModule.h')
| -rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 238b36d3d2c..c324d61a5d7 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -245,7 +245,10 @@ public: llvm::Constant * GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, const CXXRecordDecl *BaseClassDecl); - + llvm::Constant * + GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, + const CXXBaseSpecifierArray &BasePath); + /// GetStringForStringLiteral - Return the appropriate bytes for a string /// literal, properly padded to match the literal type. If only the address of /// a constant is needed consider using GetAddrOfConstantStringLiteral. |

