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
aacb30df
Commit
aacb30df
authored
Dec 10, 2013
by
Martin Haaß
Committed by
Matthias Braun
Jan 10, 2014
Browse files
Fix behaviour of dump_node_vcgattr_hook accroding to documentation
parent
e4bbae1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irdump.c
View file @
aacb30df
...
...
@@ -903,8 +903,8 @@ static void dump_node_vcgattr(FILE *F, const ir_node *node, const ir_node *local
}
if
(
dump_node_vcgattr_hook
!=
NULL
)
{
dump_node_vcgattr_hook
(
F
,
node
,
local
)
;
return
;
if
(
dump_node_vcgattr_hook
(
F
,
node
,
local
)
!=
0
)
return
;
}
n
=
local
?
local
:
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