diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-30 21:16:41 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-30 21:16:41 +0000 |
commit | c8f5df718c27138e972856090fd352b97f877b01 (patch) | |
tree | 396898358cf9c1e7f9578edd5e808cb330c552a6 /gcc/graphite-poly.c | |
parent | 650f242079e77dc3244cef1fc084167e3c4347f6 (diff) | |
download | gcc-c8f5df718c27138e972856090fd352b97f877b01.tar.gz |
Fix columns order in openscop.
2010-08-11 Riyadh Baghdadi <baghdadi.mr@gmail.com>
* graphite-poly.c (openscop_print_pdr_polyhedron): Fix indentation.
(openscop_print_pdr_polyhedron): Print pph.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164774 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-poly.c')
-rw-r--r-- | gcc/graphite-poly.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/graphite-poly.c b/gcc/graphite-poly.c index c886e1184be..0b1b5d86240 100644 --- a/gcc/graphite-poly.c +++ b/gcc/graphite-poly.c @@ -152,7 +152,7 @@ openscop_print_pdr_polyhedron (FILE *file, ppl_const_Polyhedron_t ph, ppl_dimension_type *map, i, ph_space_dim = sub_dim_last + 1; ppl_Polyhedron_t pph; - ppl_new_C_Polyhedron_from_C_Polyhedron (&pph,ph); + ppl_new_C_Polyhedron_from_C_Polyhedron (&pph, ph); map = (ppl_dimension_type *) XNEWVEC (ppl_dimension_type, ph_space_dim); @@ -171,7 +171,7 @@ openscop_print_pdr_polyhedron (FILE *file, ppl_const_Polyhedron_t ph, the output columns. */ output = nb_subscripts + 1; - openscop_print_polyhedron_matrix (file, ph, output, input, locals, nb_params); + openscop_print_polyhedron_matrix (file, pph, output, input, locals, nb_params); } /* Print to FILE the powerset PDR. NB_SUBSCRIPTS is the number of subscripts |