Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
8428d501
Commit
8428d501
authored
Aug 04, 2008
by
Christoph Mallon
Browse files
Remove unnecessary return; at end of void functions.
[r20959]
parent
99122ea7
Changes
9
Show whitespace changes
Inline
Side-by-side
ir/ana/irouts.c
View file @
8428d501
...
...
@@ -214,8 +214,6 @@ static void irg_out_walk_2(ir_node *node, irg_walk_func *pre,
}
if
(
post
)
post
(
node
,
env
);
return
;
}
void
irg_out_walk
(
ir_node
*
node
,
...
...
@@ -226,7 +224,6 @@ void irg_out_walk(ir_node *node,
inc_irg_visited
(
current_ir_graph
);
irg_out_walk_2
(
node
,
pre
,
post
,
env
);
}
return
;
}
static
void
irg_out_block_walk2
(
ir_node
*
bl
,
...
...
ir/be/bechordal_main.c
View file @
8428d501
...
...
@@ -571,8 +571,6 @@ static void be_ra_chordal_main(be_irg_t *birg)
stat_ev_if
{
be_stat_ev
(
"insns_after"
,
count_insns
(
irg
));
}
return
;
}
static
be_ra_t
be_ra_chordal_allocator
=
{
...
...
ir/be/beifg_clique.c
View file @
8428d501
...
...
@@ -270,8 +270,6 @@ static void find_nodes(const ifg_clique_t *ifg, cli_iter_t *it)
element
=
list_entry
(
cli_head
->
list
.
next
,
cli_element_t
,
list
);
it
->
curr_cli_element
=
element
;
}
return
;
}
static
ir_node
*
get_next_node
(
cli_iter_t
*
it
)
...
...
@@ -401,8 +399,6 @@ static void find_first_neighbour(const ifg_clique_t *ifg, cli_iter_t *it, const
it
->
curr_cli_element
=
element
;
it
->
curr_irn
=
irn
;
return
;
}
static
ir_node
*
get_next_neighbour
(
cli_iter_t
*
it
)
...
...
@@ -484,8 +480,6 @@ static void ifg_clique_neighbours_break(const void *self, void *iter)
(
void
)
self
;
bitset_free
(
it
->
visited_neighbours
);
return
;
}
static
ir_node
*
ifg_clique_nodes_begin
(
const
void
*
self
,
void
*
iter
)
...
...
@@ -506,8 +500,6 @@ static void ifg_clique_nodes_break(const void *self, void *iter)
(
void
)
self
;
bitset_free
(
it
->
visited_nodes
);
return
;
}
static
int
ifg_clique_degree
(
const
void
*
self
,
const
ir_node
*
irn
)
...
...
ir/be/beifg_pointer.c
View file @
8428d501
...
...
@@ -614,8 +614,6 @@ static void ifg_pointer_neighbours_break(const void *self, void *iter)
(
void
)
self
;
bitset_free
(
it
->
visited_neighbours
);
return
;
}
static
ir_node
*
ifg_pointer_nodes_begin
(
const
void
*
self
,
void
*
iter
)
...
...
ir/be/belower.c
View file @
8428d501
...
...
@@ -665,8 +665,6 @@ static void assure_constraints_walker(ir_node *irn, void *walk_env) {
if
(
sched_is_scheduled
(
irn
)
&&
mode_is_datab
(
get_irn_mode
(
irn
)))
assure_different_constraints
(
irn
,
walk_env
);
return
;
}
/**
...
...
ir/ir/irgwalk.c
View file @
8428d501
...
...
@@ -282,7 +282,6 @@ void irg_walk(ir_node *node, irg_walk_func *pre, irg_walk_func *post, void *env)
#ifdef INTERPROCEDURAL_VIEW
}
#endif
return
;
}
/*
...
...
@@ -432,7 +431,6 @@ void irg_walk_in_or_dep(ir_node *node, irg_walk_func *pre, irg_walk_func *post,
nodes_touched
=
irg_walk_in_or_dep_2
(
node
,
pre
,
post
,
env
);
clear_using_irn_visited
(
current_ir_graph
);
}
return
;
}
/*
...
...
@@ -496,7 +494,6 @@ cg_walk_2(ir_node *node, irg_walk_func *pre, irg_walk_func *post, void * env)
if
(
post
)
post
(
node
,
env
);
}
return
;
}
#ifdef INTERPROCEDURAL_VIEW
...
...
ir/tr/typewalk.c
View file @
8428d501
...
...
@@ -233,8 +233,6 @@ static void do_type_walk(type_or_ent tore,
/* execute post method */
if
(
post
)
post
(
tore
,
env
);
return
;
}
/** Check whether node contains types or entities as an attribute.
...
...
@@ -319,7 +317,6 @@ void type_walk_irg(ir_graph *irg,
do_type_walk
(
cont
,
pre
,
post
,
env
);
current_ir_graph
=
rem
;
return
;
}
static
void
type_walk_s2s_2
(
type_or_ent
tore
,
...
...
@@ -399,7 +396,6 @@ static void type_walk_s2s_2(type_or_ent tore,
printf
(
" *** Faulty type or entity!
\n
"
);
break
;
}
return
;
}
void
type_walk_super2sub
(
type_walk_func
*
pre
,
...
...
@@ -494,7 +490,6 @@ type_walk_super_2(type_or_ent tore,
printf
(
" *** Faulty type or entity!
\n
"
);
break
;
}
return
;
}
void
type_walk_super
(
type_walk_func
*
pre
,
...
...
@@ -548,8 +543,6 @@ class_walk_s2s_2(ir_type *tp,
/* execute post method */
if
(
post
)
post
(
tp
,
env
);
return
;
}
void
class_walk_super2sub
(
class_walk_func
*
pre
,
...
...
ir/tv/fltcalc.c
View file @
8428d501
...
...
@@ -817,8 +817,6 @@ static void _trunc(const fp_value *a, fp_value *result) {
sc_and
(
_mant
(
a
),
temp
,
_mant
(
result
));
if
(
a
!=
result
)
memcpy
(
_exp
(
result
),
_exp
(
a
),
value_size
);
return
;
}
/********
...
...
ir/tv/tv.c
View file @
8428d501
...
...
@@ -134,8 +134,6 @@ INLINE static void tarval_verify(tarval *tv)
if
(
!
FIND_TARVAL
(
tv
))
fail_verify
(
tv
);
if
(
tv
->
length
>
0
&&
!
FIND_VALUE
(
tv
->
value
,
tv
->
length
))
fail_verify
(
tv
);
return
;
}
#endif
/* NDEBUG */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment