Use memcpy instead of strncpy to avoid error with -Werror=stringop-truncation.
authorJohn David Anglin <danglin@gcc.gnu.org>
Fri, 19 Mar 2021 15:57:06 +0000 (15:57 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Fri, 19 Mar 2021 15:57:06 +0000 (15:57 +0000)
gcc/ChangeLog:

* config/pa/pa.c (import_milli): Use memcpy instead of strncpy.

gcc/config/pa/pa.c

index d7fcd11..46194ba 100644 (file)
@@ -5950,7 +5950,7 @@ import_milli (enum millicodes code)
     {
       imported[(int) code] = 1;
       strcpy (str, import_string);
-      strncpy (str + MILLI_START, milli_names[(int) code], 4);
+      memcpy (str + MILLI_START, milli_names[(int) code], 4);
       output_asm_insn (str, 0);
     }
 }