diff options
Diffstat (limited to 'gcc/ch/loop.c')
-rw-r--r-- | gcc/ch/loop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ch/loop.c b/gcc/ch/loop.c index 8322b96..393349b 100644 --- a/gcc/ch/loop.c +++ b/gcc/ch/loop.c @@ -523,7 +523,7 @@ build_loop_iterator (user_var, start_exp, step_exp, end_exp, ip->itype = DO_LOC_VARYING; else { - error ("Loop's IN expression is not a composite object"); + error ("loop's IN expression is not a composite object"); return; } } @@ -844,7 +844,7 @@ declare_temps () if (TREE_CODE (TREE_TYPE (array_type)) == BOOLEAN_TYPE) { - error ("Can't iterate through array of BOOL"); + error ("can't iterate through array of BOOL"); firstp->error_flag = 1; return firstp->error_flag; } |