This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


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

Re: PATCH: eliminate some endian #ifs


Jakub Jelinek <jakub@redhat.com> writes:

> > #define __LONG_LONG_SPLIT(LL) \
> >   __LONG_LONG_PAIR ((uint32_t) (((uint64_t) (LL)) >> 32), \
> > 		    (uint64_t) ((LL) & 0xffffffff))
> 			 ^^
> 			 32

Yep, and the build failed because of it too.  Time to get a new brain.

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