aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>1999-01-26 14:34:46 -0500
committerJason Merrill <jason@gcc.gnu.org>1999-01-26 14:34:46 -0500
commit1b528097cdf347b2149b2c81dd2c3327642e61f1 (patch)
tree6e5e81137491bed2002836115a7d440140334685 /gcc/libgcc2.c
parenteb686064cad732d3bd2caeffde4e0f14f2aa0354 (diff)
downloadgcc-1b528097cdf347b2149b2c81dd2c3327642e61f1.zip
gcc-1b528097cdf347b2149b2c81dd2c3327642e61f1.tar.gz
gcc-1b528097cdf347b2149b2c81dd2c3327642e61f1.tar.bz2
tweak formatting
From-SVN: r24874
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r--gcc/libgcc2.c36
1 files changed, 19 insertions, 17 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c
index b06b771..bed053d 100644
--- a/gcc/libgcc2.c
+++ b/gcc/libgcc2.c
@@ -1,6 +1,6 @@
/* More subroutines needed by GCC output code on some machines. */
/* Compile this one with gcc. */
-/* Copyright (C) 1989, 92-97, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1989, 92-98, 1999 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -3759,22 +3759,24 @@ throw_helper (eh, pc, my_udata, udata_p)
for cleanups, we save the state, and keep looking. This allows
us to call a debug hook if there are nothing but cleanups left. */
if (handler)
- if (cleanup)
- {
- if (!saved_state)
- {
- saved_ustruct = *udata;
- handler_p = handler;
- pc_p = pc;
- saved_state = 1;
- only_cleanup = 1;
- }
- }
- else
- {
- only_cleanup = 0;
- break;
- }
+ {
+ if (cleanup)
+ {
+ if (!saved_state)
+ {
+ saved_ustruct = *udata;
+ handler_p = handler;
+ pc_p = pc;
+ saved_state = 1;
+ only_cleanup = 1;
+ }
+ }
+ else
+ {
+ only_cleanup = 0;
+ break;
+ }
+ }
/* Otherwise, we continue searching. We subtract 1 from PC to avoid
hitting the beginning of the next region. */