Remove spaces from matrix lines.
2010-08-11 Riyadh Baghdadi <baghdadi.mr@gmail.com> * graphite-cloog-util.c (openscop_print_cloog_matrix): Remove spaces from matrix lines. * graphite-poly.c (openscop_print_scattering_function_1): Same. (print_scattering_function_1): Same. (openscop_print_pbb_domain): Same. (openscop_print_scop_context): Same. (print_scop_context): Same. From-SVN: r164775
This commit is contained in:
parent
d72f5037aa
commit
7241f8c55c
@ -1,3 +1,13 @@
|
||||
2010-09-30 Riyadh Baghdadi <baghdadi.mr@gmail.com>
|
||||
|
||||
* graphite-cloog-util.c (openscop_print_cloog_matrix): Remove spaces
|
||||
from matrix lines.
|
||||
* graphite-poly.c (openscop_print_scattering_function_1): Same.
|
||||
(print_scattering_function_1): Same.
|
||||
(openscop_print_pbb_domain): Same.
|
||||
(openscop_print_scop_context): Same.
|
||||
(print_scop_context): Same.
|
||||
|
||||
2010-09-30 Riyadh Baghdadi <baghdadi.mr@gmail.com>
|
||||
|
||||
* graphite-poly.c (openscop_print_pdr_polyhedron): Fix indentation.
|
||||
|
@ -1,3 +1,13 @@
|
||||
2010-08-11 Riyadh Baghdadi <baghdadi.mr@gmail.com>
|
||||
|
||||
* graphite-cloog-util.c (openscop_print_cloog_matrix): Remove spaces
|
||||
from matrix lines.
|
||||
* graphite-poly.c (openscop_print_scattering_function_1): Same.
|
||||
(print_scattering_function_1): Same.
|
||||
(openscop_print_pbb_domain): Same.
|
||||
(openscop_print_scop_context): Same.
|
||||
(print_scop_context): Same.
|
||||
|
||||
2010-08-11 Riyadh Baghdadi <baghdadi.mr@gmail.com>
|
||||
|
||||
* graphite-poly.c (openscop_print_pdr_polyhedron): Fix indentation.
|
||||
|
@ -315,7 +315,11 @@ openscop_print_cloog_matrix (FILE *file, CloogMatrix *mat,
|
||||
for (i = 0; i < cloog_matrix_nrows (mat); i++)
|
||||
{
|
||||
for (j = 0; j < cloog_matrix_ncolumns (mat); j++)
|
||||
if (j == 0)
|
||||
fprintf (file, "%ld ", mpz_get_si (mat->p[i][j]));
|
||||
else
|
||||
fprintf (file, "%6ld ", mpz_get_si (mat->p[i][j]));
|
||||
|
||||
fprintf (file, "\n");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user