From 61ca46ce9b4343929106dae5f06f65362663dac7 Mon Sep 17 00:00:00 2001 From: Sebastian Pop Date: Wed, 11 Aug 2010 20:24:08 +0000 Subject: Launch dotty in background. 2010-06-12 Sebastian Pop * 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 --- gcc/graphite-dependences.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/graphite-dependences.c') diff --git a/gcc/graphite-dependences.c b/gcc/graphite-dependences.c index f060ea0..af4c962 100644 --- a/gcc/graphite-dependences.c +++ b/gcc/graphite-dependences.c @@ -964,7 +964,7 @@ dot_deps (scop_p scop) dot_deps_1 (stream, scop); fclose (stream); - x = system ("dotty /tmp/scopdeps.dot"); + x = system ("dotty /tmp/scopdeps.dot &"); #else dot_deps_1 (stderr, scop); #endif @@ -985,7 +985,7 @@ dot_deps_stmt (scop_p scop) dot_deps_stmt_1 (stream, scop); fclose (stream); - x = system ("dotty /tmp/scopdeps.dot"); + x = system ("dotty /tmp/scopdeps.dot &"); #else dot_deps_stmt_1 (stderr, scop); #endif -- cgit v1.1