--- gcc/config/i386/svr3dbx.h 2018/04/24 18:10:27 1.1.1.1 +++ gcc/config/i386/svr3dbx.h 2018/04/24 18:31:04 1.1.1.2 @@ -1,5 +1,5 @@ /* Definitions for Intel 386 running system V, using dbx-in-coff encapsulation. - Copyright (C) 1992 Free Software Foundation, Inc. + Copyright (C) 1992, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -15,7 +15,8 @@ GNU General Public License for more deta You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ #include "i386/svr3gas.h" @@ -36,7 +37,7 @@ the Free Software Foundation, 675 Mass A /* With the current gas, .align N aligns to an N-byte boundary. This is done to be compatible with the system assembler. - You have specify -DOTHER_ALIGN wenn building gas-1.38.1. */ + You must specify -DOTHER_ALIGN when building gas-1.38.1. */ #undef ASM_OUTPUT_ALIGN #define ASM_OUTPUT_ALIGN(FILE,LOG) \ @@ -48,13 +49,13 @@ the Free Software Foundation, 675 Mass A #undef ASM_OUTPUT_ALIGN_CODE #define ASM_OUTPUT_ALIGN_CODE(FILE) \ fprintf ((FILE), "\t.align %d,0x90\n", \ - TARGET_486 ? 16 : 4); /* Use log of 16 or log of 4 as arg. */ + 1 << i386_align_jumps) /* Align start of loop at 4-byte boundary. */ #undef ASM_OUTPUT_LOOP_ALIGN #define ASM_OUTPUT_LOOP_ALIGN(FILE) \ - fprintf ((FILE), "\t.align 4,0x90\n"); + fprintf ((FILE), "\t.align %d,0x90\n", 1 << i386_align_loops); /* Additional overrides needed for dbx-in-coff gas, mostly taken from pbb.h */