diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 20:12:57 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 20:12:57 +0000 |
commit | ac0c7fb1dcdaddb68f447b490882265dfd7f688c (patch) | |
tree | 6a84e83a4ac5cdeb8d3b26f3d9d3dd04135fad57 /gcc/unwind-sjlj.c | |
parent | 2946814668620b21c7bc698159597888ebc9d857 (diff) | |
download | gcc-ac0c7fb1dcdaddb68f447b490882265dfd7f688c.tar.gz |
* toplev.c: Fix formatting.
* tree.c: Likewise.
* tree-dump.c: Likewise.
* unroll.c: Likewise.
* unwind-dw2.c: Likewise.
* unwind-dw2-fde.c: Likewise.
* unwind-dw2-fde-glibc.c: Likewise.
* unwind-sjlj.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48749 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unwind-sjlj.c')
-rw-r--r-- | gcc/unwind-sjlj.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gcc/unwind-sjlj.c b/gcc/unwind-sjlj.c index 9bf27a1a529..2161b71b7fc 100644 --- a/gcc/unwind-sjlj.c +++ b/gcc/unwind-sjlj.c @@ -1,5 +1,6 @@ /* DWARF2 exception handling and frame unwind runtime interface routines. - Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 + Free Software Foundation, Inc. This file is part of GCC. @@ -251,11 +252,13 @@ uw_init_context (struct _Unwind_Context *context) /* ??? There appear to be bugs in integrate.c wrt __builtin_longjmp and virtual-stack-vars. An inline version of this segfaults on Sparc. */ -#define uw_install_context(CURRENT, TARGET) \ - do { \ - _Unwind_SjLj_SetContext ((TARGET)->fc); \ - longjmp ((TARGET)->fc->jbuf, 1); \ - } while (0) +#define uw_install_context(CURRENT, TARGET) \ + do \ + { \ + _Unwind_SjLj_SetContext ((TARGET)->fc); \ + longjmp ((TARGET)->fc->jbuf, 1); \ + } \ + while (0) static inline _Unwind_Ptr |