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
9c43c5d4
Commit
9c43c5d4
authored
Mar 11, 2011
by
Michael Beck
Browse files
fixed size_t printing
parent
15ad7ccd
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irdumptxt.c
View file @
9c43c5d4
...
...
@@ -196,7 +196,7 @@ void dump_irnode_to_file(FILE *F, ir_node *n)
size_t
i
;
fprintf
(
F
,
" possible callees:
\n
"
);
for
(
i
=
0
;
i
<
get_Call_n_callees
(
n
);
i
++
)
{
fprintf
(
F
,
" %
d
: %s
\n
"
,
i
,
get_ent_dump_name
(
get_Call_callee
(
n
,
i
)));
ir_
fprintf
(
F
,
" %
zu
: %s
\n
"
,
i
,
get_ent_dump_name
(
get_Call_callee
(
n
,
i
)));
}
}
}
break
;
...
...
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