diff options
Diffstat (limited to 'gcc/config/v850/v850.c')
-rw-r--r-- | gcc/config/v850/v850.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/v850/v850.c b/gcc/config/v850/v850.c index 676c516ff2e..79c56afe30d 100644 --- a/gcc/config/v850/v850.c +++ b/gcc/config/v850/v850.c @@ -2278,7 +2278,7 @@ construct_restore_jr (rtx op) if (count <= 2) { - error ("bogus JR construction: %d\n", count); + error ("bogus JR construction: %d", count); return NULL; } @@ -2684,7 +2684,7 @@ construct_dispose_instruction (rtx op) if (count <= 2) { - error ("Bogus DISPOSE construction: %d\n", count); + error ("bogus DISPOSE construction: %d", count); return NULL; } @@ -2703,7 +2703,7 @@ construct_dispose_instruction (rtx op) will fit into the DISPOSE instruction. */ if (stack_bytes > 128) { - error ("Too much stack space to dispose of: %d", stack_bytes); + error ("too much stack space to dispose of: %d", stack_bytes); return NULL; } @@ -2805,7 +2805,7 @@ construct_prepare_instruction (rtx op) if (count <= 1) { - error ("Bogus PREPEARE construction: %d\n", count); + error ("bogus PREPEARE construction: %d", count); return NULL; } @@ -2824,7 +2824,7 @@ construct_prepare_instruction (rtx op) will fit into the DISPOSE instruction. */ if (stack_bytes < -128) { - error ("Too much stack space to prepare: %d", stack_bytes); + error ("too much stack space to prepare: %d", stack_bytes); return NULL; } |