~ubuntu-branches/ubuntu/trusty/cloog/trusty

« back to all changes in this revision

Viewing changes to isl/isl_coalesce.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-12-15 18:39:17 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111215183917-uqggmujou8wna9js
Tags: 0.17.0-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
        unsigned total = isl_basic_map_total_dim(map->p[i]);
159
159
        unsigned extra_rows = extra ? extra->n_row : 0;
160
160
 
161
 
        fused = isl_basic_map_alloc_dim(isl_dim_copy(map->p[i]->dim),
 
161
        fused = isl_basic_map_alloc_space(isl_space_copy(map->p[i]->dim),
162
162
                        map->p[i]->n_div,
163
163
                        map->p[i]->n_eq + map->p[j]->n_eq,
164
164
                        map->p[i]->n_ineq + map->p[j]->n_ineq + extra_rows);