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
108dfff3
Commit
108dfff3
authored
Aug 01, 2008
by
Michael Beck
Browse files
removed two not absolutely necessary const's preventing warnings on VC7
[r20889]
parent
a169b4d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bepeephole.c
View file @
108dfff3
...
...
@@ -124,7 +124,7 @@ static void set_uses(ir_node *node)
}
}
void
be_peephole_new_node
(
ir_node
*
const
nw
)
void
be_peephole_new_node
(
ir_node
*
nw
)
{
be_liveness_introduce
(
lv
,
nw
);
}
...
...
@@ -174,7 +174,7 @@ void be_peephole_before_exchange(const ir_node *old_node, ir_node *new_node)
be_liveness_remove
(
lv
,
old_node
);
}
void
be_peephole_exchange
(
ir_node
*
const
old
,
ir_node
*
const
nw
)
void
be_peephole_exchange
(
ir_node
*
old
,
ir_node
*
nw
)
{
be_peephole_before_exchange
(
old
,
nw
);
sched_remove
(
old
);
...
...
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