diff options
Diffstat (limited to 'gcc')
-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); |