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
fb729d6e
Commit
fb729d6e
authored
Aug 02, 2007
by
Michael Beck
Browse files
fixed: wrong environment transmitted
[r15441]
parent
0f3f5dcf
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/mips/mips_emitter.c
View file @
fb729d6e
...
...
@@ -436,10 +436,10 @@ static
void
mips_emit_block_label
(
mips_emit_env_t
*
env
,
const
ir_node
*
block
)
{
if
(
has_Block_label
(
block
))
{
be_emit_string
(
env
,
be_gas_label_prefix
());
be_emit_string
(
env
->
emit
,
be_gas_label_prefix
());
be_emit_irprintf
(
env
->
emit
,
"%lu"
,
get_Block_label
(
block
));
}
else
{
be_emit_cstring
(
env
,
BLOCK_PREFIX
);
be_emit_cstring
(
env
->
emit
,
BLOCK_PREFIX
);
be_emit_irprintf
(
env
->
emit
,
"%d"
,
get_irn_node_nr
(
block
));
}
...
...
Write
Preview
Supports
Markdown
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