diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2011-06-23 19:00:08 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2011-06-23 19:00:08 +0000 |
commit | cf5abc7ba032bd35158e4d75b0bc92a482fc67e8 (patch) | |
tree | 84687f1541301b30a527f804d1367dca86f61580 /lib/CodeGen/CGObjCRuntime.h | |
parent | b9b4b789ebd28d6fde1c42de820b036ffaf95162 (diff) |
Support for catching objc pointer objects in c++ catch-statement
in fragile abi mode and some other cleanups. // rdar://8940528
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjCRuntime.h')
-rw-r--r-- | lib/CodeGen/CGObjCRuntime.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/CGObjCRuntime.h b/lib/CodeGen/CGObjCRuntime.h index 510143f767..7accc70c96 100644 --- a/lib/CodeGen/CGObjCRuntime.h +++ b/lib/CodeGen/CGObjCRuntime.h @@ -128,8 +128,7 @@ public: /// This is used externally to implement catching ObjC types in C++. /// Runtimes which don't support this should add the appropriate /// error to Sema. - virtual llvm::Constant *GetEHType(QualType T, - const CodeGenFunction *CGF=0) = 0; + virtual llvm::Constant *GetEHType(QualType T) = 0; /// Generate a constant string object. virtual llvm::Constant *GenerateConstantString(const StringLiteral *) = 0; |