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
aa2711d2
Commit
aa2711d2
authored
May 25, 2011
by
yb9976
Browse files
Fixed some typos.
parent
8235e16c
Changes
3
Show whitespace changes
Inline
Side-by-side
include/libfirm/dbginfo.h
View file @
aa2711d2
...
...
@@ -81,7 +81,7 @@ typedef enum {
dbg_read_a_const
,
/**< A Firm subgraph was replaced because of a read
a constant optimization. */
dbg_rem_poly_call
,
/**< Remove polymorphic call. */
dbg_dead_code
,
/**< Removing unreachable code,
I
.e. blocks that are never executed. */
dbg_dead_code
,
/**< Removing unreachable code,
i
.e. blocks that are never executed. */
dbg_opt_confirm
,
/**< A Firm subgraph was replace because of a Confirmation. */
dbg_gvn_pre
,
/**< A Firm node was replace because of the GVN-PRE algorithm. */
dbg_combo
,
/**< A Firm node was replace because of the combo algorithm. */
...
...
ir/ana/vrp.c
View file @
aa2711d2
...
...
@@ -574,7 +574,7 @@ void set_vrp_data(ir_graph *irg)
if
(
vrp_update_node
(
node
))
{
/* if something changed, add successors to worklist*/
for
(
i
=
get_irn_n_outs
(
node
)
-
1
;
i
>=
0
;
--
i
)
{
for
(
i
=
get_irn_n_outs
(
node
)
-
1
;
i
>=
0
;
--
i
)
{
succ
=
get_irn_out
(
node
,
i
);
waitq_put
(
env
->
workqueue
,
node
);
}
...
...
ir/opt/opt_blocks.c
View file @
aa2711d2
...
...
@@ -1074,7 +1074,7 @@ static void find_liveouts(ir_node *irn, void *ctx)
}
/* find_liveouts */
/**
* Check if the current block is the meet block of
a
its predecessors.
* Check if the current block is the meet block of its predecessors.
*/
static
void
check_for_cf_meet
(
ir_node
*
block
,
void
*
ctx
)
{
...
...
Write
Preview
Markdown
is supported
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