OSDN Git Service

* except.c (default_exception_section): Move variable into the
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 28 Nov 2002 02:10:46 +0000 (02:10 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 28 Nov 2002 02:10:46 +0000 (02:10 +0000)
scope where it is used.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59593 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/except.c

index 0db0945..2dbc24a 100644 (file)
@@ -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
index 0a5e49f..c455d52 100644 (file)
@@ -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))