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
506c6cca
Commit
506c6cca
authored
Sep 17, 2007
by
Christoph Mallon
Browse files
Fix r15829.
[r15838]
parent
bdacbd77
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/iropt.c
View file @
506c6cca
...
...
@@ -3432,10 +3432,9 @@ static ir_node *transform_node_Proj_Cmp(ir_node *proj) {
if
(
get_mode_size_bits
(
mode
)
>
get_mode_size_bits
(
op_mode
)
&&
(
mode_is_signed
(
mode
)
||
!
mode_is_signed
(
op_mode
)))
{
ir_node
*
null
=
new_Const
(
op_mode
,
get_mode_null
(
op_mode
));
dbg_info
*
dbg
=
get_irn_dbg_info
(
n
);
ir_graph
*
irg
=
current_ir_graph
;
ir_node
*
block
=
get_nodes_block
(
n
);
return
new_rd_Cmp
(
dbg
,
irg
,
block
,
op
,
null
);
set_Cmp_left
(
n
,
op
);
set_Cmp_right
(
n
,
null
);
return
proj
;
}
}
...
...
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