diff options
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r-- | gcc/c-semantics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c index 1e307d9..2dda9b0 100644 --- a/gcc/c-semantics.c +++ b/gcc/c-semantics.c @@ -79,7 +79,7 @@ pop_stmt_list (tree t) cur_stmt_list = chain; /* If the statement list is completely empty, just return it. This is - just as good small as build_empty_stmt, with the advantage that + just as good small as build_empty_stmt, with the advantage that statement lists are merged when they appended to one another. So using the STATEMENT_LIST avoids pathological buildup of EMPTY_STMT_P statements. */ @@ -132,7 +132,7 @@ build_stmt (enum tree_code code, ...) { tree t = va_arg (p, tree); if (t && !TYPE_P (t)) - side_effects |= TREE_SIDE_EFFECTS (t); + side_effects |= TREE_SIDE_EFFECTS (t); TREE_OPERAND (ret, i) = t; } |