summaryrefslogtreecommitdiff
path: root/stdio-common/tst-printf-round.c
AgeCommit message (Collapse)Author
2016-01-04Update copyright dates with scripts/update-copyrights.Joseph Myers
2015-01-02Update copyright dates with scripts/update-copyrights.Joseph Myers
2014-12-30Fix some warnings in the absence of FP round/exception supportChris Metcalf
Due to tile missing a bunch of FP exception and rounding support, the tests generate warnings. These changes fix the warnings by just not compiling some unused functions, and adding some attribute ((unused)) tags.
2014-11-25Fix warning in stdio-common/tst-printf-round.c.Joseph Myers
This patch fixes warnings of the form "tst-printf-round.c:202:17: warning: passing argument 3 of 'test_hex_in_one_mode' discards 'const' qualifier from pointer target type", by adding an extra const to that argument (so that after array-to-pointer conversion it's const char *const *). Tested for x86_64. * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make third argument const.
2014-01-01Update copyright notices with scripts/update-copyrightsAllan McRae
2013-01-02Update copyright notices with scripts/update-copyrights.Joseph Myers
2012-09-24Make printf respect the rounding mode for hex output (bug 5044).Joseph Myers
2012-09-14Make printf respect the rounding mode for decimal output (bug 5044).Joseph Myers