re PR c/6223 (internal compiler error in Wine-20020310)
authorJakub Jelinek <jakub@redhat.com>
Thu, 11 Apr 2002 20:56:29 +0000 (22:56 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 11 Apr 2002 20:56:29 +0000 (22:56 +0200)
PR c/6223
* combine.c (if_then_else_cond): Use trunc_int_for_mode on nz.

* gcc.dg/20020411-1.c: New test.

From-SVN: r52176

gcc/ChangeLog
gcc/combine.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/20020411-1.c [new file with mode: 0644]

index fb2ba3245a9f2c26e723b7bd7cc47c99c826148d..34c0f0faef50401dbe257d5c2cb5888c65a34618 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/6223
+       * combine.c (if_then_else_cond): Use trunc_int_for_mode on nz.
+
 2002-04-10  David O'Brien  <obrien@FreeBSD.org>
 
        * config/alpha/freebsd.h: Minor reformatting.
index 9a9d6484f565af85ce284c0210174070d3967807..e051c618636830b4ab05e440964559c64901216f 100644 (file)
@@ -7382,7 +7382,7 @@ if_then_else_cond (x, ptrue, pfalse)
           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
           && exact_log2 (nz = nonzero_bits (x, mode)) >= 0)
     {
-      *ptrue = GEN_INT (nz), *pfalse = const0_rtx;
+      *ptrue = gen_int_mode (nz, mode), *pfalse = const0_rtx;
       return x;
     }
 
index 93ef461fc1bf5f762a913b0d2aa4a8d6c9229912..df40cb497fc22634c0b2dfb40a879e28d1dc9524 100644 (file)
@@ -1,3 +1,10 @@
+2002-04-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/6223
+       * combine.c (if_then_else_cond): Use trunc_int_for_mode on nz.
+
+       * gcc.dg/20020411-1.c: New test.
+
 2002-04-10  Janis Johnson  <janis187@us.ibm.com>
 
        * g77.f-torture/execute/6177.f: New test.
diff --git a/gcc/testsuite/gcc.dg/20020411-1.c b/gcc/testsuite/gcc.dg/20020411-1.c
new file mode 100644 (file)
index 0000000..d8a9392
--- /dev/null
@@ -0,0 +1,50 @@
+/* PR c/6223
+   This testcase ICEd in internal check because a constant was not truncated
+   for its mode.  */
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-options "-O2 -march=i686" { target i?86-*-* } } */
+
+typedef struct
+{
+  unsigned a : 16;
+  unsigned b : 16;
+  unsigned c : 5;
+  unsigned d : 2;
+  unsigned e : 1;
+  unsigned f : 4;
+  unsigned g : 1;
+  unsigned h : 1;
+  unsigned i : 1;
+  unsigned j : 1;
+} T;
+
+inline void
+foo (T *x, unsigned int y)
+{
+  if ((x->j = (y >= 0x100000)))
+    y >>= 12;
+  x->a = y;
+  x->f = (y >> 16);
+}
+
+void __attribute__((noinline))
+bar (T *x)
+{
+}
+
+void
+baz (unsigned int x, unsigned char y)
+{
+  T t;
+
+  foo (&t, x - 1);
+  t.e = 1;
+  t.c = y;
+  t.g = 0;
+  t.h = 0;
+  t.i = (y & 0x40) != 0;
+  if (x == 1)
+    foo (&t, 1);
+  bar (&t);
+}