This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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: Fix dealing with large (>2GB) static data initalizers


	AIX bootstrap is completely broken with this patch.  The original
patch had an output format of "%u" and an argument of (int)(SIZE), which
is completely broken.  I tried changing all of those to

HOST_WIDE_INT_PRINT_UNSIGNED

but now I am seeing output like:


reswords:
        .long   LC..334
        .short  15
        .space 18446744073709551614
        .short  0
        .space 18446744073709551614
        .long   LC..335
        .short  63
        .space 18446744073709551614
        .short  0
        .space 18446744073709551614

with completely wild values.  I looks like not all of the sizes were
changed to HOST_WIDE_INT.

David


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