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
d6445fe0
Commit
d6445fe0
authored
Apr 03, 2016
by
Matthias Braun
Browse files
TEMPLATE: Use bool arg for be_new_IncSP
parent
2dd358a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/TEMPLATE/TEMPLATE_bearch.c
View file @
d6445fe0
...
...
@@ -68,7 +68,8 @@ static void introduce_prologue(ir_graph *const irg)
ir_node
*
const
initial_sp
=
be_get_Start_proj
(
irg
,
sp
);
ir_type
*
const
frame_type
=
get_irg_frame_type
(
irg
);
unsigned
const
frame_size
=
get_type_size
(
frame_type
);
ir_node
*
const
incsp
=
be_new_IncSP
(
sp
,
block
,
initial_sp
,
frame_size
,
0
);
ir_node
*
const
incsp
=
be_new_IncSP
(
sp
,
block
,
initial_sp
,
frame_size
,
false
);
edges_reroute_except
(
initial_sp
,
incsp
,
incsp
);
sched_add_after
(
start
,
incsp
);
}
...
...
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