summaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorroland <roland@138bc75d-0d04-0410-961f-82ee72b054a4>2013-03-26 16:43:09 +0000
committerroland <roland@138bc75d-0d04-0410-961f-82ee72b054a4>2013-03-26 16:43:09 +0000
commitb48eb84487edf179862110b636fb0afcfa86a619 (patch)
tree265b73604638e193258d155223d1a995fac12204 /gcc/config
parentee9e7384e1c470d1fc6c2eedc6f754f690a02cf5 (diff)
downloadgcc-b48eb84487edf179862110b636fb0afcfa86a619.tar.gz
* config/arm/arm.c (arm_print_operand: case 'w'): Use fputs rather
than fprintf with a non-constant, non-format string. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@197115 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/arm/arm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index d70df4da070..21020b9b9b1 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -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;