Commit 4c8f3c48 by Ramakrishna Upadrasta Committed by Sebastian Pop

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
parent 86e4d552
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> 2010-01-20 Sebastian Pop <sebastian.pop@amd.com>
* testsuite/gcc.dg/graphite/id-17.c: New. * testsuite/gcc.dg/graphite/id-17.c: New.
......
...@@ -1497,7 +1497,7 @@ dot_all_scops (VEC (scop_p, heap) *scops) ...@@ -1497,7 +1497,7 @@ dot_all_scops (VEC (scop_p, heap) *scops)
dot_all_scops_1 (stream, scops); dot_all_scops_1 (stream, scops);
fclose (stream); fclose (stream);
x = system ("dotty /tmp/allscops.dot"); x = system ("dotty /tmp/allscops.dot &");
#else #else
dot_all_scops_1 (stderr, scops); dot_all_scops_1 (stderr, scops);
#endif #endif
...@@ -1523,7 +1523,7 @@ dot_scop (scop_p scop) ...@@ -1523,7 +1523,7 @@ dot_scop (scop_p scop)
dot_all_scops_1 (stream, scops); dot_all_scops_1 (stream, scops);
fclose (stream); fclose (stream);
x = system ("dotty /tmp/allscops.dot"); x = system ("dotty /tmp/allscops.dot &");
} }
#else #else
dot_all_scops_1 (stderr, scops); dot_all_scops_1 (stderr, scops);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment