re PR target/35225 (gcc segfaults when building GTK+ code with -O2 -fPIC for SH4)
authorKaz Kojima <kkojima@gcc.gnu.org>
Wed, 20 Feb 2008 23:37:58 +0000 (23:37 +0000)
committerKaz Kojima <kkojima@gcc.gnu.org>
Wed, 20 Feb 2008 23:37:58 +0000 (23:37 +0000)
PR target/35225
* config/sh/sh.c (find_barrier): Don't go past 'from' argument.

From-SVN: r132503

gcc/ChangeLog
gcc/config/sh/sh.c

index 4245df642f17d769fce09576cc106a7a8f472651..8c0b6ebfeb0ae154a9a9e246871085946d9d64ca 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-20  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       PR target/35225
+       * config/sh/sh.c (find_barrier): Don't go past 'from' argument.
+
 2008-02-20  Kaz Kojima  <kkojima@gcc.gnu.org>
 
        PR target/35190
index 37abdf6ae49453729ad7be18d8aed1183e7e3d27..dccbc1ea3509e816ff20234fe9d67d76e439c1ad 100644 (file)
@@ -3838,6 +3838,7 @@ find_barrier (int num_mova, rtx mova, rtx from)
   rtx barrier_before_mova = 0, found_barrier = 0, good_barrier = 0;
   int si_limit;
   int hi_limit;
+  rtx orig = from;
 
   /* For HImode: range is 510, add 4 because pc counts from address of
      second instruction after this one, subtract 2 for the jump instruction
@@ -4070,7 +4071,8 @@ find_barrier (int num_mova, rtx mova, rtx from)
       /* If we exceeded the range, then we must back up over the last
         instruction we looked at.  Otherwise, we just need to undo the
         NEXT_INSN at the end of the loop.  */
-      if (count_hi > hi_limit || count_si > si_limit)
+      if (PREV_INSN (from) != orig
+         && (count_hi > hi_limit || count_si > si_limit))
        from = PREV_INSN (PREV_INSN (from));
       else
        from = PREV_INSN (from);