diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-28 18:09:28 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-28 18:09:28 +0000 |
commit | b77659f4ae4cce1885766960c07885d97b539689 (patch) | |
tree | da0e1b94e7ab221c65b6c991f0a3862f4bd33a91 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | ebbbf451c935e0e55a5a7f1fb1774443d9e88a0d (diff) | |
download | bcm5719-llvm-b77659f4ae4cce1885766960c07885d97b539689.tar.gz bcm5719-llvm-b77659f4ae4cce1885766960c07885d97b539689.zip |
Some code cleanup.
llvm-svn: 77339
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 06265196f94..a3e37963104 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -533,8 +533,8 @@ public: // FIXME. This currently only does a derived to non-virtual base conversion. // Other kinds of conversions will come later. llvm::Value *AddressCXXOfBaseClass(llvm::Value *ThisValue, - CXXRecordDecl *ClassDecl, - CXXRecordDecl *BaseClassDecl); + const CXXRecordDecl *ClassDecl, + const CXXRecordDecl *BaseClassDecl); void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type, llvm::Value *This, |