diff options
author | Jan Hubicka <jh@suse.cz> | 2002-02-27 10:47:27 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-02-27 09:47:27 +0000 |
commit | cd98ad035e95ad1acfd585002d0491fba1ece4a7 (patch) | |
tree | 92e991e6712fc665b0c20918b01082196248a102 /gcc | |
parent | 639ae55bd3ea8924ff31212d39b4dbd3998090cd (diff) | |
download | gcc-cd98ad035e95ad1acfd585002d0491fba1ece4a7.zip gcc-cd98ad035e95ad1acfd585002d0491fba1ece4a7.tar.gz gcc-cd98ad035e95ad1acfd585002d0491fba1ece4a7.tar.bz2 |
linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Remove.
Wed Feb 27 10:45:19 CET 2002 Jan Hubicka <jh@suse.cz>
* linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Remove.
* x86-64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Allways define.
From-SVN: r50097
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/linux64.h | 15 | ||||
-rw-r--r-- | gcc/config/i386/x86-64.h | 2 |
3 files changed, 5 insertions, 17 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cf3d5af..6b3b54a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed Feb 27 10:45:19 CET 2002 Jan Hubicka <jh@suse.cz> + + * linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Remove. + * x86-64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Allways define. + Wed Feb 27 10:39:20 CET 2002 Jan Hubicka <jh@suse.cz> * linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Define. diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h index b63157e..8d70972 100644 --- a/gcc/config/i386/linux64.h +++ b/gcc/config/i386/linux64.h @@ -30,21 +30,6 @@ Boston, MA 02111-1307, USA. */ #undef CPP_SPEC #define CPP_SPEC "%(cpp_cpu) %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT} %{!m32:-D__LONG_MAX__=9223372036854775807L}" -/* A C statement to output to the stdio stream FILE an assembler - command to advance the location counter to a multiple of 1<<LOG - bytes if it is within MAX_SKIP bytes. - - This is used to align code labels according to Intel recommendations. */ - -#define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP) \ - do { \ - if ((LOG) != 0) { \ - if ((MAX_SKIP) == 0) fprintf ((FILE), "\t.p2align %d\n", (LOG)); \ - else fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \ - } \ - } while (0) -#endif - /* Provide a LINK_SPEC. Here we provide support for the special GCC options -static and -shared, which allow us to link things in one of these three modes by applying the appropriate combinations of diff --git a/gcc/config/i386/x86-64.h b/gcc/config/i386/x86-64.h index c6a8376..56e4684 100644 --- a/gcc/config/i386/x86-64.h +++ b/gcc/config/i386/x86-64.h @@ -73,7 +73,6 @@ Boston, MA 02111-1307, USA. */ This is used to align code labels according to Intel recommendations. */ -#ifdef HAVE_GAS_MAX_SKIP_P2ALIGN #define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP) \ do { \ if ((LOG) != 0) { \ @@ -81,7 +80,6 @@ Boston, MA 02111-1307, USA. */ else fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \ } \ } while (0) -#endif /* i386 System V Release 4 uses DWARF debugging info. |