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
e753c3e8
Commit
e753c3e8
authored
Mar 20, 2006
by
Michael Beck
Browse files
cosmetic fixes
[r7477]
parent
4438894a
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irnode.c
View file @
e753c3e8
...
...
@@ -631,12 +631,12 @@ get_Block_cfgpred_arr (ir_node *node)
int
(
get_Block_n_cfgpreds
)(
ir_node
*
node
)
{
return
get_Block_n_cfgpreds
(
node
);
return
_
get_Block_n_cfgpreds
(
node
);
}
ir_node
*
(
get_Block_cfgpred
)(
ir_node
*
node
,
int
pos
)
{
return
get_Block_cfgpred
(
node
,
pos
);
return
_
get_Block_cfgpred
(
node
,
pos
);
}
void
...
...
@@ -749,22 +749,19 @@ int (is_Block_dead)(const ir_node *block) {
}
ir_extblk
*
get_Block_extbb
(
const
ir_node
*
block
)
{
ir_extblk
*
res
;
assert
(
is_Block
(
block
));
return
block
->
attr
.
block
.
extblk
;
res
=
block
->
attr
.
block
.
extblk
;
assert
(
res
==
NULL
||
is_ir_extbb
(
res
));
return
res
;
}
void
set_Block_extbb
(
ir_node
*
block
,
ir_extblk
*
extblk
)
{
assert
(
is_Block
(
block
));
assert
(
extblk
==
NULL
||
is_ir_extbb
(
extblk
));
block
->
attr
.
block
.
extblk
=
extblk
;
}
void
set_Start_irg
(
ir_node
*
node
,
ir_graph
*
irg
)
{
assert
(
node
->
op
==
op_Start
);
assert
(
is_ir_graph
(
irg
));
assert
(
0
&&
" Why set irg? -- use set_irn_irg"
);
}
int
get_End_n_keepalives
(
ir_node
*
end
)
{
assert
(
end
->
op
==
op_End
);
...
...
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