summaryrefslogtreecommitdiff
path: root/gcc/gimple.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r--gcc/gimple.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h
index 9a0160c861a..7872d9e30e5 100644
--- a/gcc/gimple.h
+++ b/gcc/gimple.h
@@ -584,13 +584,13 @@ struct GTY(()) gimple_omp_for_iter {
/* Index variable. */
tree index;
-
+
/* Initial value. */
tree initial;
/* Final value. */
tree final;
-
+
/* Increment. */
tree incr;
};
@@ -700,7 +700,7 @@ struct GTY(()) gimple_statement_omp_single {
};
-/* GIMPLE_OMP_ATOMIC_LOAD.
+/* GIMPLE_OMP_ATOMIC_LOAD.
Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
contains a sequence, which we don't need here. */
@@ -986,7 +986,7 @@ struct gimplify_ctx
gimple_seq conditional_cleanups;
tree exit_label;
tree return_temp;
-
+
VEC(tree,heap) *case_labels;
/* The formal temporary table. Should this be persistent? */
htab_t temp_htab;
@@ -1102,7 +1102,7 @@ gimple_has_substatements (gimple g)
return false;
}
}
-
+
/* Return the basic block holding statement G. */
@@ -2493,7 +2493,7 @@ gimple_goto_dest (const_gimple gs)
/* Set DEST to be the destination of the unconditonal jump GS. */
-static inline void
+static inline void
gimple_goto_set_dest (gimple gs, tree dest)
{
GIMPLE_CHECK (gs, GIMPLE_GOTO);
@@ -3368,7 +3368,7 @@ gimple_debug_bind_has_value_p (gimple dbg)
/* Return the body for the OMP statement GS. */
-static inline gimple_seq
+static inline gimple_seq
gimple_omp_body (gimple gs)
{
return gs->omp.body;
@@ -4434,7 +4434,7 @@ gsi_start_bb (basic_block bb)
{
gimple_stmt_iterator i;
gimple_seq seq;
-
+
seq = bb_seq (bb);
i.ptr = gimple_seq_first (seq);
i.seq = seq;
@@ -4585,7 +4585,7 @@ gsi_last_nondebug_bb (basic_block bb)
}
/* Return a pointer to the current stmt.
-
+
NOTE: You may want to use gsi_replace on the iterator itself,
as this performs additional bookkeeping that will not be done
if you simply assign through a pointer returned by gsi_stmt_ptr. */