OSDN Git Service

* reload.c (find_reloads_toplev): Mode of X is not important
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Oct 2002 09:02:24 +0000 (09:02 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Oct 2002 09:02:24 +0000 (09:02 +0000)
        when simplifying subregs of constants.
* g++.dg/opt/reload1.C: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58490 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/reload.c
gcc/testsuite/g++.dg/opt/reload1.C [new file with mode: 0644]

index e485a49..7f36895 100644 (file)
@@ -1,3 +1,9 @@
+2002-10-24  Richard Henderson  <rth@redhat.com>
+
+        PR opt/7944
+        * reload.c (find_reloads_toplev): Mode of X is not important
+       when simplifying subregs of constants.
+
 2002-10-24  Richard Sandiford  <rsandifo@redhat.com>
 
        * config.gcc (mips64vr-*-elf*, mips64vrel-*-elf*): Add
index 9b779be..d500350 100644 (file)
@@ -4471,8 +4471,7 @@ find_reloads_toplev (x, opnum, type, ind_levels, is_set_dest, insn,
                                        reg_equiv_constant[regno])) != 0)
        return tem;
 
-      if (GET_MODE_BITSIZE (GET_MODE (x)) == BITS_PER_WORD
-         && regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
+      if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
          && reg_equiv_constant[regno] != 0)
        {
          tem =
diff --git a/gcc/testsuite/g++.dg/opt/reload1.C b/gcc/testsuite/g++.dg/opt/reload1.C
new file mode 100644 (file)
index 0000000..0d8fb89
--- /dev/null
@@ -0,0 +1,43 @@
+// PR 7944
+// { dg-do compile }
+// { dg-options -O2 }
+
+struct B
+{
+  B & operator << (short s)
+  {
+    int j;
+    if (j)
+        return operator << (s);
+    else
+        return operator << (s);
+  }
+};
+
+struct A
+{
+  int i;
+  static void bar ();
+  static int quux ()
+  {
+    bar ();
+    return 0;
+  }
+
+  A ():i (quux ())
+  {
+  }
+  ~A ()
+  {
+  }
+};
+
+void
+foo ()
+{
+  short s[4] = { 0, 0, 0, 1 };
+  A a[2] = { A (), A () };
+
+  B b;
+  b << s[0] << s[2];
+}