Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
cb236975
Commit
cb236975
authored
Dec 02, 2015
by
yb9976
Browse files
Remove dead assignment.
parent
4a362771
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bevarargs.c
View file @
cb236975
...
...
@@ -33,13 +33,11 @@ void be_default_lower_va_arg(ir_node *node)
ir_node
*
new_mem
;
if
(
apmode
!=
NULL
)
{
ir_node
*
const
load
=
new_rd_Load
(
dbgi
,
block
,
node_mem
,
ap
,
apmode
,
aptype
,
cons_none
);
res
=
new_r_Proj
(
load
,
apmode
,
pn_Load_res
);
res
=
new_r_Proj
(
load
,
apmode
,
pn_Load_res
);
new_mem
=
new_r_Proj
(
load
,
mode_M
,
pn_Load_M
);
}
else
{
// aptype has no associated mode, so it is represented
// as a pointer.
apmode
=
mode_P
;
res
=
ap
;
/* aptype has no associated mode, so it is represented as a pointer. */
res
=
ap
;
new_mem
=
node_mem
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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