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
d1564f4d
Commit
d1564f4d
authored
Aug 14, 2014
by
Matthias Braun
Browse files
display function name on verify errors
parent
979cade5
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irverify.c
View file @
d1564f4d
...
...
@@ -28,7 +28,7 @@ static void warn(const ir_node *n, const char *format, ...)
FILE
*
out
=
stderr
;
fputs
(
"Verify warning: "
,
out
);
if
(
n
!=
NULL
)
{
ir_fprintf
(
out
,
"%+F: "
,
n
);
ir_fprintf
(
out
,
"%+F
(%+F)
: "
,
n
,
get_irn_irg
(
n
)
);
}
va_list
ap
;
va_start
(
ap
,
format
);
...
...
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