diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-11 20:24:08 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-11 20:24:08 +0000 |
commit | 189cea6884a7dc3567fe8cc5d985984fac15e852 (patch) | |
tree | 6f5ef5aca0e35a0d4111af3b6ab61f61df9cd25d /gcc/graphite-poly.c | |
parent | 1861e1273b326d25eaca85a0276ba5953290ccfb (diff) | |
download | gcc-189cea6884a7dc3567fe8cc5d985984fac15e852.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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163115 138bc75d-0d04-0410-961f-82ee72b054a4
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); |