On 10/17/2011 06:33 PM, Dodji Seketeli wrote:
OK if this appears to fix the raised issues and passes bootstraps on the i686 target?
If you have a patch like this that fixes a major regression, go ahead and check it in without waiting for approval; we can adjust it as necessary after build is working again.
size_t num_expanded_macros;
- fprintf (stderr, "Number of expanded macros: %5lu\n", - s.num_expanded_macros); + fprintf (stderr, "Number of expanded macros: %5ld\n", + (long)s.num_expanded_macros);
If we're going to use %l in printf, we should use long rather than size_t in linemap_stats; that way we don't need the cast.
Jason