Make calls to dot run in background.

2010-01-22  Ramakrishna Upadrasta <Ramakrishna.Upadrasta@inria.fr>

	* graphite-scop-detection.c (dot_all_scops): Make calls to dot run in
	  background.

From-SVN: r156547
This commit is contained in:
Ramakrishna Upadrasta 2010-02-06 18:41:22 +01:00 committed by Sebastian Pop
parent 86e4d552d9
commit 4c8f3c48bf
2 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,14 @@
2010-01-22 Ramakrishna Upadrasta <Ramakrishna.Upadrasta@inria.fr>
* graphite-scop-detection.c (dot_all_scops): Make calls to dot run in
background.
2010-01-22 Ramakrishna Upadrasta <Ramakrishna.Upadrasta@inria.fr>
* common.opt: Add -fgraphite-cloog-opts.
* graphite-clast-to-gimple.c (set_cloog_options): Same.
* opts.c (decode_options): Same.
2010-01-20 Sebastian Pop <sebastian.pop@amd.com>
* testsuite/gcc.dg/graphite/id-17.c: New.

View File

@ -1497,7 +1497,7 @@ dot_all_scops (VEC (scop_p, heap) *scops)
dot_all_scops_1 (stream, scops);
fclose (stream);
x = system ("dotty /tmp/allscops.dot");
x = system ("dotty /tmp/allscops.dot &");
#else
dot_all_scops_1 (stderr, scops);
#endif
@ -1523,7 +1523,7 @@ dot_scop (scop_p scop)
dot_all_scops_1 (stream, scops);
fclose (stream);
x = system ("dotty /tmp/allscops.dot");
x = system ("dotty /tmp/allscops.dot &");
}
#else
dot_all_scops_1 (stderr, scops);