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
702948b1
Commit
702948b1
authored
Dec 22, 2012
by
Christoph Mallon
Browse files
betranshlp: Only check once, whether each node is in the right obstack.
parent
f09e60a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/betranshlp.c
View file @
702948b1
...
...
@@ -224,11 +224,11 @@ void be_enqueue_preds(ir_node *node)
*/
static
void
fix_loops
(
ir_node
*
node
)
{
assert
(
node_is_in_irgs_storage
(
env
.
irg
,
node
));
if
(
irn_visited_else_mark
(
node
))
return
;
assert
(
node_is_in_irgs_storage
(
env
.
irg
,
node
));
bool
changed
=
false
;
if
(
!
is_Block
(
node
))
{
ir_node
*
block
=
get_nodes_block
(
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