Re: [PATCH][ARM] Use snprintf rather than sprintf where possible

2015-12-01 Thread Kyrill Tkachov
Ping. https://gcc.gnu.org/ml/gcc-patches/2015-11/msg00937.html This fell through the cracks for me. Is this ok at this stage? Or should I leave it for GCC 7? Thanks, Kyrill On 09/11/15 11:36, Kyrill Tkachov wrote: Hi all, Judging by the thread at https://gcc.gnu.org/ml/gcc-patches/2015-10/ms

[PATCH][ARM] Use snprintf rather than sprintf where possible

2015-11-09 Thread Kyrill Tkachov
Hi all, Judging by the thread at https://gcc.gnu.org/ml/gcc-patches/2015-10/msg01912.html I looked at replacing calls to sprintf with calls to snprintf in the arm backend. We use them a lot to print assembly mnemonics into static char buffers. This patch replaces the calls with snprintf and add