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
19e61a7a
Commit
19e61a7a
authored
Aug 07, 2008
by
Michael Beck
Browse files
- Add missing case in the identity() function
- removed warning [r21041]
parent
192986af
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/combo.c
View file @
19e61a7a
...
...
@@ -2043,12 +2043,14 @@ static node_t *identity(node_t *node) {
return
identity_Phi
(
node
);
case
iro_Add
:
return
identity_Add
(
node
);
case
iro_Mul
:
return
identity_Mul
(
node
);
case
iro_Or
:
return
identity_Or
(
node
);
case
iro_And
:
return
identity_And
(
node
);
case
iro_Sub
:
return
identity_Sub
(
node
);
case
iro_And
:
return
identity_Add
(
node
);
case
iro_Confirm
:
return
identity_Confirm
(
node
);
case
iro_Mux
:
...
...
@@ -2134,7 +2136,6 @@ static void segregate_def_use_chain(const ir_node *follower, node_t *leader) {
* Make all inputs to x from inside X no longer be F.def_use edges.
*/
static
void
move_edges_to_leader
(
node_t
*
x
)
{
partition_t
*
X
=
x
->
part
;
ir_node
*
irn
=
x
->
node
;
int
i
,
j
,
k
;
...
...
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