diff options
author | Jan Hubicka <jh@suse.cz> | 2002-03-27 22:37:54 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-03-27 21:37:54 +0000 |
commit | 8a12f34cfca8cfcd5c7e5904ab283c73565e8be6 (patch) | |
tree | 1251b1c9fd88ae41efde551cce98e066c36e720f | |
parent | 8bb3a5af0fcc6c11155db3d15208bbac80a868a0 (diff) | |
download | gcc-8a12f34cfca8cfcd5c7e5904ab283c73565e8be6.zip gcc-8a12f34cfca8cfcd5c7e5904ab283c73565e8be6.tar.gz gcc-8a12f34cfca8cfcd5c7e5904ab283c73565e8be6.tar.bz2 |
* i386.c (ix86_output_addr_diff_elt): Remove binutils bug workaround.
From-SVN: r51470
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f6a7aef..317122a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Mar 27 22:33:05 CET 2002 Jan Hubicka <jh@suse.cz> + + * i386.c (ix86_output_addr_diff_elt): Remove binutils bug workaround. + 2002-03-27 Neil Booth <neil@daikokuya.demon.co.uk> * c-common.c (c_expand_expr): Fix prototype. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 02bdc98..9c074c6 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -6650,7 +6650,7 @@ ix86_output_addr_diff_elt (file, value, rel) int value, rel; { if (TARGET_64BIT) - fprintf (file, "%s%s%d-.+4+(.-%s%d)\n", + fprintf (file, "%s%s%d-.+(.-%s%d)\n", ASM_LONG, LPREFIX, value, LPREFIX, rel); else if (HAVE_AS_GOTOFF_IN_DATA) fprintf (file, "%s%s%d@GOTOFF\n", ASM_LONG, LPREFIX, value); |