Re: [PR middle-end/60832] Do not convert widest_int to tree just for printing it.

2015-09-21 Thread Manuel López-Ibáñez
On 21 September 2015 at 09:24, Richard Biener wrote: > On Sun, 20 Sep 2015, Manuel López-Ibáñez wrote: > >> In do_warn_aggressive_loop_optimizations, we convert to a tree just to print >> a >> widest_int. Apart from overly complicated, this results in printing '3u' >> instead of just '3'. >> >> U

Re: [PR middle-end/60832] Do not convert widest_int to tree just for printing it.

2015-09-21 Thread Richard Biener
On Sun, 20 Sep 2015, Manuel López-Ibáñez wrote: > In do_warn_aggressive_loop_optimizations, we convert to a tree just to print a > widest_int. Apart from overly complicated, this results in printing '3u' > instead of just '3'. > > Unfortunately, adding a printf-like conversion specifier would req

[PR middle-end/60832] Do not convert widest_int to tree just for printing it.

2015-09-20 Thread Manuel López-Ibáñez
In do_warn_aggressive_loop_optimizations, we convert to a tree just to print a widest_int. Apart from overly complicated, this results in printing '3u' instead of just '3'. Unfortunately, adding a printf-like conversion specifier would require making pretty-print.c link with wide-int.cc, which wil