aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorTobias Grosser <grosser@fim.uni-passau.de>2009-11-25 05:03:27 +0000
committerSebastian Pop <spop@gcc.gnu.org>2009-11-25 05:03:27 +0000
commit8d75ec872b04053bc814dccbf5b985406a33a9a5 (patch)
treed20b149efab5956d6ba4e92a6c2b049ec78e77c2 /gcc
parentee3a52d794c4deac1a5d3b618545b38521ed1dd6 (diff)
downloadgcc-8d75ec872b04053bc814dccbf5b985406a33a9a5.zip
gcc-8d75ec872b04053bc814dccbf5b985406a33a9a5.tar.gz
gcc-8d75ec872b04053bc814dccbf5b985406a33a9a5.tar.bz2
id-15.c: (8 * 8) replaced with sizeof(unsigned long) to make it run on 32bit systems.
2009-10-14 Tobias Grosser <grosser@fim.uni-passau.de> * testsuite/gcc.dg/graphite/id-15.c: (8 * 8) replaced with sizeof(unsigned long) to make it run on 32bit systems. From-SVN: r154580
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog.graphite19
1 files changed, 15 insertions, 4 deletions
diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite
index 1a71d65..5d53275 100644
--- a/gcc/ChangeLog.graphite
+++ b/gcc/ChangeLog.graphite
@@ -1,11 +1,22 @@
+2009-10-14 Tobias Grosser <grosser@fim.uni-passau.de>
+
+ * testsuite/gcc.dg/graphite/id-15.c: (8 * 8) replaced with
+ sizeof(unsigned long) to make it run on 32bit systems.
+
+2009-10-14 Tobias Grosser <grosser@fim.uni-passau.de>
+
+ * testsuite/gcc.dg/graphite/run-id-1.c: Use smaller matrix to not
+ SEGFAULT on 32bit.
+
2009-10-14 Ramakrishna Upadrasta <Ramakrishna.Upadrasta@inria.fr>
- * graphite-sese-to-poly.c (write_alias_graph_to_ascii_dimacs): Fix Comment.
+ * graphite-sese-to-poly.c (write_alias_graph_to_ascii_dimacs): Fix
+ Comment.
(write_alias_graph_to_ascii_dot): New.
(write_alias_graph_to_ascii_ecc): Ditto.
- (partition_drs_to_sets): Add testing of optimality of current method which
- assigns alias numbers according to DFS Comopnent number.
- used as heuristic for the upcoming ECC algorithm.
+ (partition_drs_to_sets): Add testing of optimality of current method
+ which assigns alias numbers according to DFS Comopnent number. used
+ as heuristic for the upcoming ECC algorithm.
(build_scop_drs): Write to file also with the ecc and dot format.
2009-10-13 Sebastian Pop <sebastian.pop@amd.com>