diff options
Diffstat (limited to 'gcc/config/mep')
-rw-r--r-- | gcc/config/mep/mep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mep/mep.c b/gcc/config/mep/mep.c index c55624b2eb1..62877d4754c 100644 --- a/gcc/config/mep/mep.c +++ b/gcc/config/mep/mep.c @@ -4066,7 +4066,7 @@ mep_validate_vliw (tree *node, tree name, tree args ATTRIBUTE_UNUSED, if (TREE_CODE (*node) == POINTER_TYPE && !gave_pointer_note) { - inform (input_location, "To describe a pointer to a VLIW function, use syntax like this:"); + inform (input_location, "to describe a pointer to a VLIW function, use syntax like this:"); inform (input_location, " typedef int (__vliw *vfuncptr) ();"); gave_pointer_note = 1; } @@ -4074,7 +4074,7 @@ mep_validate_vliw (tree *node, tree name, tree args ATTRIBUTE_UNUSED, if (TREE_CODE (*node) == ARRAY_TYPE && !gave_array_note) { - inform (input_location, "To describe an array of VLIW function pointers, use syntax like this:"); + inform (input_location, "to describe an array of VLIW function pointers, use syntax like this:"); inform (input_location, " typedef int (__vliw *vfuncptr[]) ();"); gave_array_note = 1; } |