This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: S/390: Get rid of assembler warning value truncated.


Stefan Liebler <stli@linux.vnet.ibm.com> writes:

> diff --git a/sysdeps/s390/s390-32/dl-machine.h b/sysdeps/s390/s390-32/dl-machine.h
> index 527233b..74939b8 100644
> --- a/sysdeps/s390/s390-32/dl-machine.h
> +++ b/sysdeps/s390/s390-32/dl-machine.h
> @@ -72,7 +72,7 @@ elf_machine_load_address (void)
>  
>    asm( "   bras  1,2f\n"
>         "1: .long _GLOBAL_OFFSET_TABLE_ - 1b\n"
> -       "   .long _dl_start - 1b - 0x80000000\n"
> +       "   .long (_dl_start - 1b) & 0x7fffffff\n"

This is only equivalent if _dl_start - 1b is always negative.

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]