diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-23 06:06:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-23 06:06:36 +0000 |
commit | 21fb98ee003e992b0c4e204d98a19e0ef544cae3 (patch) | |
tree | fb74b2013454c3630bc397c5a8ba0c8f9b654b42 /lib/Sema/Sema.h | |
parent | 6a3bc6df36848188e9d0c1d978170c2b0918c6a3 (diff) |
implement support for __builtin_eh_return_data_regno on x86-32 and x86-64.
This implements PR5034 and rdar://6836445.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.h')
-rw-r--r-- | lib/Sema/Sema.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index 193d992881..875da1a1d9 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -3700,6 +3700,7 @@ private: bool SemaBuiltinObjectSize(CallExpr *TheCall); bool SemaBuiltinLongjmp(CallExpr *TheCall); bool SemaBuiltinAtomicOverloaded(CallExpr *TheCall); + bool SemaBuiltinEHReturnDataRegNo(CallExpr *TheCall); bool SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg); |