2010-12-07 Joern Rennecke <amylaar@spamcop.net>
Richard Guenther <rguenther@suse.de>
PR target/46737
* config/bfin/bfin.c (BB_AUX_INDEX): Cast to intptr_t.
(bfin_reorder_loops): Change type of index to intptr_t.
Co-Authored-By: Richard Guenther <rguenther@suse.de>
From-SVN: r167532
+2010-12-07 Joern Rennecke <amylaar@spamcop.net>
+ Richard Guenther <rguenther@suse.de>
+
+ PR target/46737
+ * config/bfin/bfin.c (BB_AUX_INDEX): Cast to intptr_t.
+ (bfin_reorder_loops): Change type of index to intptr_t.
+
2010-12-07 Richard Guenther <rguenther@suse.de>
PR tree-optimization/46726
}
}
-#define BB_AUX_INDEX(BB) ((unsigned)(BB)->aux)
+#define BB_AUX_INDEX(BB) ((intptr_t)(BB)->aux)
/* The taken-branch edge from the loop end can actually go forward. Since the
Blackfin's LSETUP instruction requires that the loop end be after the loop
for (loop = loops; loop; loop = loop->next)
{
- unsigned index;
+ intptr_t index;
basic_block bb;
edge e;
edge_iterator ei;