This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
64bit uncleanliness in df.c
- To: gcc-bugs at gcc dot gnu dot org
- Subject: 64bit uncleanliness in df.c
- From: lucier at math dot purdue dot edu
- Date: Fri, 9 Nov 2001 18:19:13 -0500 (EST)
- Cc: dan at cgsoftware dot com, lucier at math dot purdue dot edu
A bootstrap of today's CVS sources on alphaev6-unknown-linux-gnu gives
the following warnings:
../../gcc/df.c: In function `iterative_dataflow_sbitmap':
../../gcc/df.c:3653: warning: cast to pointer from integer of different size
../../gcc/df.c:3670: warning: cast from pointer to integer of different size
../../gcc/df.c:3739: warning: cast to pointer from integer of different size
../../gcc/df.c:3754: warning: cast to pointer from integer of different size
../../gcc/df.c: In function `iterative_dataflow_bitmap':
../../gcc/df.c:3787: warning: cast to pointer from integer of different size
../../gcc/df.c:3804: warning: cast from pointer to integer of different size
../../gcc/df.c:3863: warning: cast to pointer from integer of different size
../../gcc/df.c:3878: warning: cast to pointer from integer of different size
These warnings seem to be harmless as long as an int can fit into a pointer,
but generally warnings like this are serious, so it would be nice to
get rid of them somehow.
Brad Lucier