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
d9b82a87
Commit
d9b82a87
authored
Apr 20, 2016
by
Manuel Mohr
Browse files
Also handle floating-point loads and stores.
parent
51f5ff9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/sparc/sparc_stackframe.c
View file @
d9b82a87
...
...
@@ -67,6 +67,10 @@ static bool node_has_sp_base(ir_node const *const node)
input
=
n_sparc_Ld_ptr
;
}
else
if
(
is_sparc_St
(
node
))
{
input
=
n_sparc_St_ptr
;
}
else
if
(
is_sparc_Ldf
(
node
))
{
input
=
n_sparc_Ldf_ptr
;
}
else
if
(
is_sparc_Stf
(
node
))
{
input
=
n_sparc_Stf_ptr
;
}
else
{
panic
(
"Unexpected node %+F"
,
node
);
}
...
...
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