aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2009-07-28 18:09:28 +0000
committerFariborz Jahanian <fjahanian@apple.com>2009-07-28 18:09:28 +0000
commit6d0bdaa68989bee60c85274e82a8f9c982587f26 (patch)
treede66fdbba0b138e1f75f1b3f68bb38d96b87d655 /lib/CodeGen/CodeGenFunction.h
parentc2cc1d5e29596f2ee2f32ca9c06f9119904dd161 (diff)
Some code cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77339 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r--lib/CodeGen/CodeGenFunction.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index 06265196f9..a3e3796310 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/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,