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
40f56bde
Commit
40f56bde
authored
Feb 27, 2010
by
Michael Beck
Browse files
- add missing include
- removed C99 feature [r27246]
parent
cd8b7a75
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irdumptxt.c
View file @
40f56bde
...
...
@@ -37,6 +37,7 @@
#include "trouts.h"
#include "irgwalk.h"
#include "tv_t.h"
#include "vrp.h"
#include "irprintf.h"
#include "error.h"
...
...
@@ -97,9 +98,10 @@ static FILE *text_open(const char *basename, const char * suffix1, const char *s
/* Write the irnode and all its attributes to the file passed. */
int
dump_irnode_to_file
(
FILE
*
F
,
ir_node
*
n
)
{
int
i
,
bad
=
0
;
char
comma
;
int
i
,
bad
=
0
;
char
comma
;
ir_graph
*
irg
;
vrp_attr
*
vrp_info
;
dump_node_opcode
(
F
,
n
);
fprintf
(
F
,
" %ld
\n
"
,
get_irn_node_nr
(
n
));
...
...
@@ -392,10 +394,12 @@ int dump_irnode_to_file(FILE *F, ir_node *n)
fprintf
(
F
,
"
\n
volatile"
);
fprintf
(
F
,
"
\n
"
);
}
break
;
default:
;
default:
break
;
}
vrp_attr
*
vrp_info
=
vrp_get_info
(
n
);
vrp_info
=
vrp_get_info
(
n
);
if
(
vrp_info
)
{
dump_vrp_info
(
F
,
n
);
}
...
...
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