diff options
Diffstat (limited to 'gnu/usr.bin/binutils/gas/config/tc-i960.c')
-rw-r--r-- | gnu/usr.bin/binutils/gas/config/tc-i960.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/binutils/gas/config/tc-i960.c b/gnu/usr.bin/binutils/gas/config/tc-i960.c index d8c15c09911..13cedc175ae 100644 --- a/gnu/usr.bin/binutils/gas/config/tc-i960.c +++ b/gnu/usr.bin/binutils/gas/config/tc-i960.c @@ -661,7 +661,7 @@ md_assemble (textP) case REG: if (branch_predict) { - as_warn (bp_error_msg); + as_warn ("%s", bp_error_msg); } reg_fmt (args, oP); break; @@ -670,7 +670,7 @@ md_assemble (textP) { if (branch_predict) { - as_warn (bp_error_msg); + as_warn ("%s", bp_error_msg); } mem_fmt (args, oP, 1); break; @@ -682,14 +682,14 @@ md_assemble (textP) case MEM16: if (branch_predict) { - as_warn (bp_error_msg); + as_warn ("%s", bp_error_msg); } mem_fmt (args, oP, 0); break; case CALLJ: if (branch_predict) { - as_warn (bp_error_msg); + as_warn ("%s", bp_error_msg); } /* Output opcode & set up "fixup" (relocation); flag relocation as 'callj' type. */ |