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

« back to all changes in this revision

Viewing changes to isl/isl_band.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:
140
140
                int i, n;
141
141
                isl_band_list *children;
142
142
 
143
 
                suffix = isl_union_map_empty(isl_union_map_get_dim(band->map));
 
143
                suffix = isl_union_map_empty(isl_union_map_get_space(band->map));
144
144
                children = isl_band_get_children(band);
145
145
                n = isl_band_list_n_band(children);
146
146
                for (i = 0; i < n; ++i) {
186
186
 
187
187
        return p;
188
188
}
189
 
 
190
 
void isl_band_dump(__isl_keep isl_band *band)
191
 
{
192
 
        isl_printer *printer;
193
 
 
194
 
        if (!band)
195
 
                return;
196
 
 
197
 
        printer = isl_printer_to_file(isl_band_get_ctx(band), stderr);
198
 
        printer = isl_printer_print_band(printer, band);
199
 
        printer = isl_printer_end_line(printer);
200
 
 
201
 
        isl_printer_free(printer);
202
 
}