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 | 2ce88ef9a70863b1424022fdd2b6598368854a2b (patch) | |
tree | 6f5bfba1776b760d79655b0afd528b085426a566 /clang/lib/CodeGen/CGCXXABI.h | |
parent | 7c1598caaa385ce09b187dac446596d163a58311 (diff) | |
download | bcm5719-llvm-2ce88ef9a70863b1424022fdd2b6598368854a2b.tar.gz bcm5719-llvm-2ce88ef9a70863b1424022fdd2b6598368854a2b.zip |
[Windows] Abstract pure virtual method calls in the ABI. Fix the Windows ABI to forward to the correct function.
llvm-svn: 160373
Diffstat (limited to 'clang/lib/CodeGen/CGCXXABI.h')
-rw-r--r-- | clang/lib/CodeGen/CGCXXABI.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGCXXABI.h b/clang/lib/CodeGen/CGCXXABI.h index 476720535ab..a0dcdfdcc68 100644 --- a/clang/lib/CodeGen/CGCXXABI.h +++ b/clang/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 |