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
ae7ae8f3
Commit
ae7ae8f3
authored
Jul 11, 2007
by
Michael Beck
Browse files
C99 feature removed
[r15050]
parent
26978503
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/lower/lower_mode_b.c
View file @
ae7ae8f3
...
...
@@ -67,7 +67,7 @@ static ir_node *lower_node(ir_node *node)
if
(
op
==
op_Phi
)
{
int
i
,
arity
;
ir_node
**
in
;
ir_node
*
unknown
;
ir_node
*
unknown
,
*
new_phi
;
arity
=
get_irn_arity
(
node
);
in
=
alloca
(
arity
*
sizeof
(
in
[
0
]));
...
...
@@ -75,7 +75,7 @@ static ir_node *lower_node(ir_node *node)
for
(
i
=
0
;
i
<
arity
;
++
i
)
{
in
[
i
]
=
unknown
;
}
ir_node
*
new_phi
=
new_rd_Phi
(
dbgi
,
irg
,
block
,
arity
,
in
,
new_phi
=
new_rd_Phi
(
dbgi
,
irg
,
block
,
arity
,
in
,
lowered_mode
);
set_irn_link
(
node
,
new_phi
);
...
...
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