diff options
author | Jim Laskey <jlaskey@mac.com> | 2007-01-29 20:48:32 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2007-01-29 20:48:32 +0000 |
commit | 1b340dc8e20dc1ce204ebdcc2ff11c3dd36888f1 (patch) | |
tree | d6b3fe3a8d4075a9338beafc76fc59f27f314cf1 /include/llvm/Target/TargetOptions.h | |
parent | f82aa1cf73b6cdd0c6713ad365bae1204755ee2f (diff) | |
download | external_llvm-1b340dc8e20dc1ce204ebdcc2ff11c3dd36888f1.zip external_llvm-1b340dc8e20dc1ce204ebdcc2ff11c3dd36888f1.tar.gz external_llvm-1b340dc8e20dc1ce204ebdcc2ff11c3dd36888f1.tar.bz2 |
Flag to control exception handling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetOptions.h')
-rw-r--r-- | include/llvm/Target/TargetOptions.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 6bfe005..fcf2aa1 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -59,6 +59,11 @@ namespace llvm { /// .bss section. This flag disables such behaviour (necessary, e.g. for /// crt*.o compiling). extern bool NoZerosInBSS; + + /// ExceptionHandling - This flag indicates that exception information should + /// be emitted. + extern bool ExceptionHandling; + } // End llvm namespace #endif |