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
6633222e
Commit
6633222e
authored
Dec 07, 2012
by
Christoph Mallon
Browse files
dump: Remove extra leading dashes from dump suffixes.
parent
fd761f39
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/be/bepbqpcoloring.c
View file @
6633222e
...
...
@@ -598,7 +598,7 @@ static void be_pbqp_coloring(be_chordal_env_t *env)
/* dump graph after inserting perms */
if
(
env
->
opts
->
dump_flags
&
BE_CH_DUMP_CONSTR
)
{
char
buf
[
256
];
snprintf
(
buf
,
sizeof
(
buf
),
"
-
%s-constr"
,
cls
->
name
);
snprintf
(
buf
,
sizeof
(
buf
),
"%s-constr"
,
cls
->
name
);
dump_ir_graph
(
irg
,
buf
);
}
...
...
ir/stat/dags.c
View file @
6633222e
...
...
@@ -393,7 +393,7 @@ void count_dags_in_graph(graph_entry_t *global, graph_entry_t *graph)
/* dump for test */
mark_options
=
root_env
.
options
;
set_dump_node_vcgattr_hook
(
stat_dag_mark_hook
);
dump_ir_graph
(
graph
->
irg
,
"
-
dag"
);
dump_ir_graph
(
graph
->
irg
,
"dag"
);
set_dump_node_vcgattr_hook
(
NULL
);
assert
(
id
==
root_env
.
num_of_dags
);
...
...
Write
Preview
Supports
Markdown
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