summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2007-01-29 20:48:32 +0000
committerJim Laskey <jlaskey@mac.com>2007-01-29 20:48:32 +0000
commit1b340dc8e20dc1ce204ebdcc2ff11c3dd36888f1 (patch)
treed6b3fe3a8d4075a9338beafc76fc59f27f314cf1 /include
parentf82aa1cf73b6cdd0c6713ad365bae1204755ee2f (diff)
downloadllvm-1b340dc8e20dc1ce204ebdcc2ff11c3dd36888f1.tar.gz
llvm-1b340dc8e20dc1ce204ebdcc2ff11c3dd36888f1.tar.bz2
llvm-1b340dc8e20dc1ce204ebdcc2ff11c3dd36888f1.tar.xz
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')
-rw-r--r--include/llvm/Target/TargetOptions.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h
index 6bfe005c15..fcf2aa15bb 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