diff options
Diffstat (limited to 'clang/lib/CodeGen/CGCXXABI.h')
-rw-r--r-- | clang/lib/CodeGen/CGCXXABI.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGCXXABI.h b/clang/lib/CodeGen/CGCXXABI.h index 760068a9cb4..5e21bb0c9f1 100644 --- a/clang/lib/CodeGen/CGCXXABI.h +++ b/clang/lib/CodeGen/CGCXXABI.h @@ -49,10 +49,10 @@ protected: protected: ImplicitParamDecl *&getThisDecl(CodeGenFunction &CGF) { - return CGF.CXXThisDecl; + return CGF.CXXABIThisDecl; } llvm::Value *&getThisValue(CodeGenFunction &CGF) { - return CGF.CXXThisValue; + return CGF.CXXABIThisValue; } ImplicitParamDecl *&getVTTDecl(CodeGenFunction &CGF) { |