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 other/43449] sbitmap is broken if gcc is built with -m32 on a 64-bit machine.



------- Comment #1 from pinskia at gcc dot gnu dot org  2010-03-19 21:02 -------
SBITMAP_ELT_TYPE is defined as HOST_WIDEST_FAST_INT. And HOST_WIDEST_FAST_INT
(added by me) is either "long" or "long long".  Yes there should be a cast but
it cannot be an issue really with -m32 really because long is the same size as
int there.  The host is LP32 as you described so long is the same size as int. 
If HOST_WIDEST_FAST_INT is "long long" there, there is bug in the configuration
as that will slow down the compiler anyways.


-- 


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


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