Re: [PATCH, GCC] Require c99_runtime for pr78622.c

2017-05-04 Thread Thomas Preudhomme
And now with the patch. Best regards, Thomas On 04/05/17 10:36, Thomas Preudhomme wrote: Hi, Testcase gcc.c-torture/execute/pr78622.c uses %hhd printf specifier which was introduced in C99. C89 only recognizes h, l and L length specifier, it does not recognize hh length specifier. As such, th

[PATCH, GCC] Require c99_runtime for pr78622.c

2017-05-04 Thread Thomas Preudhomme
Hi, Testcase gcc.c-torture/execute/pr78622.c uses %hhd printf specifier which was introduced in C99. C89 only recognizes h, l and L length specifier, it does not recognize hh length specifier. As such, this commit adds a c99_runtime effective target requirement. ChangeLog entry is as follows: *