diff options
author | Joao Matos <ripzonetriton@gmail.com> | 2012-07-17 17:10:11 +0000 |
---|---|---|
committer | Joao Matos <ripzonetriton@gmail.com> | 2012-07-17 17:10:11 +0000 |
commit | 285baac67d722beb6854f5faa45ee1aa62a7ce92 (patch) | |
tree | 5ff38a036a92fc9c70c94c105122940c253cda5c /lib/CodeGen/CGCXXABI.h | |
parent | e1da3305158d1ecbb6d0cb2cc4ae0c1b3457b29d (diff) |
[Windows] Abstract pure virtual method calls in the ABI. Fix the Windows ABI to forward to the correct function.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160373 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGCXXABI.h')
-rw-r--r-- | lib/CodeGen/CGCXXABI.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CGCXXABI.h b/lib/CodeGen/CGCXXABI.h index 476720535a..a0dcdfdcc6 100644 --- a/lib/CodeGen/CGCXXABI.h +++ b/lib/CodeGen/CGCXXABI.h @@ -193,6 +193,9 @@ public: virtual void EmitReturnFromThunk(CodeGenFunction &CGF, RValue RV, QualType ResultType); + /// Gets the pure virtual member call function. + virtual StringRef GetPureVirtualCallName() = 0; + /**************************** Array cookies ******************************/ /// Returns the extra size required in order to store the array |