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
6e12f267
Commit
6e12f267
authored
Sep 10, 2010
by
Matthias Braun
Browse files
sparc: fix fmov emitter
[r28003]
parent
e5759194
Changes
1
Show whitespace changes
Inline
Side-by-side
ir/be/sparc/sparc_emitter.c
View file @
6e12f267
...
...
@@ -932,9 +932,9 @@ static void emit_sparc_SwitchJmp(const ir_node *node)
static
void
emit_fmov
(
const
ir_node
*
node
,
const
arch_register_t
*
src_reg
,
const
arch_register_t
*
dst_reg
)
{
be_emit_cstring
(
"
\t
fmov
"
);
be_emit_cstring
(
"
\t
fmov
s %
"
);
be_emit_string
(
arch_register_get_name
(
src_reg
));
be_emit_cstring
(
", "
);
be_emit_cstring
(
",
%
"
);
be_emit_string
(
arch_register_get_name
(
dst_reg
));
be_emit_finish_line_gas
(
node
);
}
...
...
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