diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2010-08-11 20:24:08 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-08-11 20:24:08 +0000 |
commit | 61ca46ce9b4343929106dae5f06f65362663dac7 (patch) | |
tree | 6f5ef5aca0e35a0d4111af3b6ab61f61df9cd25d /gcc/graphite-poly.c | |
parent | f5f504800f0a14f8a81b01d46c9860d8de1e6c01 (diff) | |
download | gcc-61ca46ce9b4343929106dae5f06f65362663dac7.tar.gz |
Launch dotty in background.
2010-06-12 Sebastian Pop <sebastian.pop@amd.com>
* graphite-dependences.c (dot_deps): Make system call to dotty run
in background.
(dot_deps_stmt): Same.
* graphite-poly.c (dot_lst): Same.
From-SVN: r163115
Diffstat (limited to 'gcc/graphite-poly.c')
-rw-r--r-- | gcc/graphite-poly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/graphite-poly.c b/gcc/graphite-poly.c index 7eb45ca0110..28da7f0b93e 100644 --- a/gcc/graphite-poly.c +++ b/gcc/graphite-poly.c @@ -1285,7 +1285,7 @@ dot_lst (lst_p lst) fputs ("}\n\n", stream); fclose (stream); - x = system ("dotty /tmp/lst.dot"); + x = system ("dotty /tmp/lst.dot &"); #else fputs ("digraph all {\n", stderr); dot_lst_1 (stderr, lst); |