aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/loop-3.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@gcc.gnu.org>2004-04-23 22:01:35 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2004-04-23 22:01:35 +0000
commit1548580c20926cec85916f89a029d6c3946c9961 (patch)
tree23910f8a83c06830e31193db62701766afc5624d /gcc/testsuite/gcc.dg/loop-3.c
parent5a944040b849f4834d7b07f9025e8aee5c6ff7c4 (diff)
downloadgcc-1548580c20926cec85916f89a029d6c3946c9961.zip
gcc-1548580c20926cec85916f89a029d6c3946c9961.tar.gz
gcc-1548580c20926cec85916f89a029d6c3946c9961.tar.bz2
re PR rtl-optimization/13985 (ICE in gcc.c-torture/compile/930621-1.c)
PR optimization/13985 * cfgloopmanip.c (fix_loop_placements): New prototype. Call fix_bb_placements on the preheader of loops that have been reparented. (remove_path): Adjust call to fix_loop_placements. From-SVN: r81112
Diffstat (limited to 'gcc/testsuite/gcc.dg/loop-3.c')
-rw-r--r--gcc/testsuite/gcc.dg/loop-3.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/loop-3.c b/gcc/testsuite/gcc.dg/loop-3.c
new file mode 100644
index 0000000..ba6fe55
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/loop-3.c
@@ -0,0 +1,45 @@
+/* PR optimization/13985 */
+/* Copied from gcc.c-torture/compile/930621-1.c */
+
+/* { dg-do compile } */
+/* { dg-options "-O3" } */
+/* { dg-options "-O3 -mtune=i386" { target i?86-*-* x86_64-*-* } } */
+
+#if defined(STACK_SIZE) && (STACK_SIZE < 65536)
+# define BYTEMEM_SIZE 10000L
+#endif
+
+#ifndef BYTEMEM_SIZE
+# define BYTEMEM_SIZE 45000L
+#endif
+
+int bytestart[5000 + 1];
+unsigned char modtext[400 + 1];
+unsigned char bytemem[2][BYTEMEM_SIZE + 1];
+
+long
+modlookup (int l)
+{
+ signed char c;
+ long j;
+ long k;
+ signed char w;
+ long p;
+ while (p != 0)
+ {
+ while ((k < bytestart[p + 2]) && (j <= l) && (modtext[j] == bytemem[w][k]))
+ {
+ k = k + 1;
+ j = j + 1;
+ }
+ if (k == bytestart[p + 2])
+ if (j > l)
+ c = 1;
+ else c = 4;
+ else if (j > l)
+ c = 3;
+ else if (modtext[j] < bytemem[w][k])
+ c = 0;
+ else c = 2;
+ }
+}