diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2015-03-11 23:46:32 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2015-03-11 23:46:32 +0000 |
commit | 27173288c296638e7e3c9e6c1653e305e3482a63 (patch) | |
tree | d264967c538a3296bfea8074ce3b1e048c5e4e98 /clang/lib/CodeGen/TargetInfo.h | |
parent | 3c2ea3106c70e8fcb0c97300584f849651248d0c (diff) | |
download | bcm5719-llvm-27173288c296638e7e3c9e6c1653e305e3482a63.tar.gz bcm5719-llvm-27173288c296638e7e3c9e6c1653e305e3482a63.zip |
Under duress, move check for target support of __builtin_setjmp/
__builtin_longjmp to Sema as requested by John McCall.
llvm-svn: 231986
Diffstat (limited to 'clang/lib/CodeGen/TargetInfo.h')
-rw-r--r-- | clang/lib/CodeGen/TargetInfo.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.h b/clang/lib/CodeGen/TargetInfo.h index 0c3fdc3c8ac..cc469d69e39 100644 --- a/clang/lib/CodeGen/TargetInfo.h +++ b/clang/lib/CodeGen/TargetInfo.h @@ -225,12 +225,6 @@ public: virtual unsigned getOpenMPSimdDefaultAlignment(QualType Type) const { return 0; } - - /// Control if __builtin_longjmp / __builtin_setjmp can be lowered to - /// llvm.eh.sjlj.longjmp / llvm.eh.sjlj.setjmp. - virtual bool hasSjLjLowering(CodeGen::CodeGenFunction &CGF) const { - return false; - } }; } |