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
33447340
Commit
33447340
authored
Jul 16, 2010
by
Christoph Mallon
Browse files
DeMorgan to the rescue!
[r27751]
parent
4764ebb8
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/sparc/sparc_emitter.c
View file @
33447340
...
...
@@ -132,7 +132,7 @@ static const arch_register_t *get_out_reg(const ir_node *node, int pos)
void
sparc_emit_immediate
(
const
ir_node
*
node
)
{
const
sparc_attr_t
*
attr
=
get_sparc_attr_const
(
node
);
assert
(
!
(
attr
->
immediate_value
<
-
4096
||
attr
->
immediate_value
>=
4096
)
)
;
assert
(
-
4096
<=
attr
->
immediate_value
&&
attr
->
immediate_value
<
4096
);
be_emit_irprintf
(
"%d"
,
attr
->
immediate_value
);
}
...
...
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