diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-28 02:10:46 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-28 02:10:46 +0000 |
commit | 01bffb8afc287ee9e0fe75f308ce833f6bbf2da3 (patch) | |
tree | 6f738d00ada7be3ce8db1003689f609d416aebdd | |
parent | 9f6a375a825242954aba0162c4f603fae1224e2a (diff) | |
download | gcc-01bffb8afc287ee9e0fe75f308ce833f6bbf2da3.tar.gz |
* except.c (default_exception_section): Move variable into the
scope where it is used.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59593 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/except.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0db09452d6f..2dbc24aa137 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-11-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * except.c (default_exception_section): Move variable into the + scope where it is used. + 2002-11-27 Krister Walfridsson <cato@df.lth.se> * config.gcc (*-*-netbsd[2-9]*, *-*-netbsdelf[2-9]*): Test for diff --git a/gcc/except.c b/gcc/except.c index 0a5e49fa813..c455d5208e3 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -3597,10 +3597,10 @@ default_exception_section () { if (targetm.have_named_sections) { - int tt_format = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/1); int flags; - #ifdef HAVE_LD_RO_RW_SECTION_MIXING + int tt_format = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/1); + flags = (! flag_pic || ((tt_format & 0x70) != DW_EH_PE_absptr && (tt_format & 0x70) != DW_EH_PE_aligned)) |