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
cf5da50e
Commit
cf5da50e
authored
Feb 06, 2016
by
Matthias Braun
Browse files
amd64: Cleanup
parent
f32a6b43
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/amd64/amd64_emitter.c
View file @
cf5da50e
...
...
@@ -986,12 +986,9 @@ static void amd64_gen_block(ir_node *block)
*/
static
void
amd64_gen_labels
(
ir_node
*
block
,
void
*
env
)
{
ir_node
*
pred
;
int
n
=
get_Block_n_cfgpreds
(
block
);
(
void
)
env
;
for
(
n
--
;
n
>=
0
;
n
--
)
{
pred
=
get_Block_cfgpred
(
block
,
n
);
(
void
)
env
;
for
(
int
n
=
get_Block_n_cfgpreds
(
block
)
-
1
;
n
>=
0
;
n
--
)
{
ir_node
*
const
pred
=
get_Block_cfgpred
(
block
,
n
);
set_irn_link
(
pred
,
block
);
}
}
...
...
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