arm.c (arm_print_operand: case 'w'): Use fputs rather than fprintf with a non-constant, non-format string.
* config/arm/arm.c (arm_print_operand: case 'w'): Use fputs rather than fprintf with a non-constant, non-format string. From-SVN: r197115
This commit is contained in:
parent
93a4145ba1
commit
6f33817e6a
|
@ -1,3 +1,8 @@
|
|||
2013-03-26 Roland McGrath <mcgrathr@google.com>
|
||||
|
||||
* config/arm/arm.c (arm_print_operand: case 'w'): Use fputs rather
|
||||
than fprintf with a non-constant, non-format string.
|
||||
|
||||
2013-03-26 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.md (*cmpqi_ext_1): Merge with *cmpqi_ext_1_rex64
|
||||
|
|
|
@ -17997,7 +17997,7 @@ arm_print_operand (FILE *stream, rtx x, int code)
|
|||
"wC12", "wC13", "wC14", "wC15"
|
||||
};
|
||||
|
||||
fprintf (stream, wc_reg_names [INTVAL (x)]);
|
||||
fputs (wc_reg_names [INTVAL (x)], stream);
|
||||
}
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in New Issue