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
a2394177
Commit
a2394177
authored
Oct 24, 2014
by
yb9976
Browse files
Cleanup using C99.
parent
2d3d1ee2
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/lower/lower_mode_b.c
View file @
a2394177
...
...
@@ -77,10 +77,9 @@ static ir_node *create_cond_set(ir_node *cond_value, ir_mode *dest_mode)
ir_node
*
one
=
new_r_Const_one
(
irg
,
dest_mode
);
ir_node
*
zero
=
new_r_Const_null
(
irg
,
dest_mode
);
ir_node
*
phi_in
[
2
]
=
{
one
,
zero
};
ir_node
*
phi
;
set_irn_in
(
lower_block
,
ARRAY_SIZE
(
lower_in
),
lower_in
);
phi
=
new_r_Phi
(
lower_block
,
ARRAY_SIZE
(
phi_in
),
phi_in
,
dest_mode
);
ir_node
*
phi
=
new_r_Phi
(
lower_block
,
ARRAY_SIZE
(
phi_in
),
phi_in
,
dest_mode
);
return
phi
;
}
...
...
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