On 09/23/2016 09:42 AM, Thomas Preudhomme wrote:
Sorry, forgot the patch. Please find it attached.
Best regards,
Thomas
On 23/09/16 16:40, Thomas Preudhomme wrote:
Hi,
New builtin-sprintf-warn-1.c testcase contains a few regex of the form
"\[0-9\]+
bytes" or ". bytes". This does not account for the case where the
number of byte
is 0 in which case byte would be in the singular form. This caused a
FAIL on
arm-none-eabi targets. This patch makes the s optional in all cases
where the
number of bytes is unknown.
I did not commit this fix as obvious as people might want to only do
the changes
for lines where the number of bytes *could* be 0 so I prefer to get
review.
Thanks for the patch. The %p fixes look correct to me (someone
else needs to approve the final patch).
For the INT_MAX tests, I think it's a sign of a bug in the pass if
for the following call
sprintf (buf, "X%*c", INT_MAX, '1');
GCC prints
warning: directive output of 0 byte causes result to exceed 'INT_MAX'
My guess is that the bug is specific to a 32-bit compiler (I can't
reproduce it in a 64-bit one with -m32). Let me build one and look
into fixing it.
Martin
ChangeLog entry is as follows:
*** gcc/testsuite/ChangeLog ***
2016-09-23 Thomas Preud'homme <thomas.preudho...@arm.com>
* gcc.dg/tree-ssa/builtin-sprintf-warn-1.c: Adjust regex to
accept
singular form of byte when quantity is unknown.
Is this ok for trunk?
Best regards,
Thomas