* varasm.c (assemble_name): Increase buffer size for name.

From-SVN: r242810
This commit is contained in:
Jeff Law 2016-11-23 15:48:45 -07:00 committed by Jeff Law
parent 11a669fbeb
commit 188a209119
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2016-11-23 Jeff Law <law@redhat.com>
* varasm.c (assemble_name): Increase buffer size for name.
* config/spu/spu.md (floatunsdidf2): Remove unused local variable.
2016-11-23 Jakub Kicinski <jakub.kicinski@netronome.com>

View File

@ -2547,7 +2547,7 @@ assemble_name (FILE *file, const char *name)
rtx
assemble_static_space (unsigned HOST_WIDE_INT size)
{
char name[16];
char name[17];
const char *namestring;
rtx x;