This is the mail archive of the gcc-bugs@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]

[Bug c/11424] Asm broken on IA64 ?


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11424



------- Additional Comments From wilson at tuliptree dot org  2003-07-04 05:15 -------
Subject: Re:  New: Asm broken on IA64 ?

wwadge at hobsoft dot com dot mt wrote:
> movl r25=(1 << 64) - 1

This isn't a binutils bug either.  Shifting by greater than the size of 
int is invalid.  Changing this to 1L << 64 doesn't help, because you are 
still shifting by greater than the size of long.

Jim


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