aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-03-27 21:38:40 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-03-27 21:38:40 -0800
commit894d0e3925471409585a6bdcc7af6b24be670fbf (patch)
tree34b4d71a08c693691dc3caeb99c94e15b6c7e086 /gcc
parent531073e70e23f5faa6a88240b5cd73e4df3202d6 (diff)
downloadgcc-894d0e3925471409585a6bdcc7af6b24be670fbf.zip
gcc-894d0e3925471409585a6bdcc7af6b24be670fbf.tar.gz
gcc-894d0e3925471409585a6bdcc7af6b24be670fbf.tar.bz2
except.h (flag_non_call_exceptions): Move ...
* except.h (flag_non_call_exceptions): Move ... * flags.h: ... here. From-SVN: r40906
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/except.h4
-rw-r--r--gcc/flags.h3
3 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 470ce29..156756f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -17,6 +17,9 @@
* dwarf2out.c, except.c, final.c, toplev.c, config/ia64/ia64.c:
Use USING_SJLJ_EXCEPTIONS instead of exceptions_via_longjmp.
+ * except.h (flag_non_call_exceptions): Move ...
+ * flags.h: ... here.
+
2001-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* configure.in: Don't check for bcopy.
diff --git a/gcc/except.h b/gcc/except.h
index 9ce4706..fadbb4b 100644
--- a/gcc/except.h
+++ b/gcc/except.h
@@ -472,10 +472,6 @@ extern void push_ehqueue PARAMS ((void));
/* Restore a previously pushed ehqueue. */
extern void pop_ehqueue PARAMS ((void));
-/* One to enable asynchronous exception support. */
-
-extern int flag_non_call_exceptions;
-
/* One to protect cleanup actions with a handler that calls
__terminate, zero otherwise. */
diff --git a/gcc/flags.h b/gcc/flags.h
index d0e2b27..8bc2ddd 100644
--- a/gcc/flags.h
+++ b/gcc/flags.h
@@ -624,4 +624,7 @@ extern int flag_eliminate_dwarf2_dups;
and to print them when we are done. */
extern int flag_detailed_statistics;
+/* Nonzero means enable synchronous exceptions for non-call instructions. */
+extern int flag_non_call_exceptions;
+
#endif /* GCC_FLAGS_H */