graphite-optimize-isl.c (get_schedule_map): Fix typo.

2016-01-21  Richard Biener  <rguenther@suse.de>

	* graphite-optimize-isl.c (get_schedule_map): Fix typo.

From-SVN: r232670
This commit is contained in:
Richard Biener 2016-01-21 10:50:30 +00:00 committed by Richard Biener
parent d45ef29ed1
commit 3e0c32dfda
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2016-01-21 Richard Biener <rguenther@suse.de>
* graphite-optimize-isl.c (get_schedule_map): Fix typo.
2016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
* config/s390/s390.c (s390_asm_declare_function_size): Add code

View File

@ -301,7 +301,7 @@ get_schedule_map (isl_schedule *schedule)
{
isl_band_list *band_list = isl_schedule_get_band_forest (schedule);
isl_union_map *schedule_map = get_schedule_for_band_list (band_list);
isl_band_list_free (bandList);
isl_band_list_free (band_list);
return schedule_map;
}
#endif