On Fri, 5 Oct 2012, Kenneth Zadeck wrote: > +# define HOST_HALF_WIDE_INT_PRINT "h"
This may cause problems on hosts not supporting %hd (MinGW?), and there's no real need for using "h" here given the promotion of short to int; you can just use "" (rather than e.g. needing special handling in xm-mingw32.h like is done for HOST_LONG_LONG_FORMAT). -- Joseph S. Myers jos...@codesourcery.com