Commit 36019c19 by Stuart Henderson

re PR target/47951 (web.c:union_match_dups segmentation fault for bfin)

2011-05-02  Stuart Henderson  <shenders@gcc.gnu.org>

        PR target/47951
        * config/bfin/bfin.md (loop_end): Use matching constraints to ensure
        inputs match the output.

From-SVN: r173261
parent f69ea688
2011-05-02 Stuart Henderson <shenders@gcc.gnu.org>
PR target/47951
* config/bfin/bfin.md (loop_end): Use matching constraints to ensure
inputs match the output.
2011-05-02 Andreas Schwab <schwab@linux-m68k.org>
PR target/47955
......
......@@ -1961,15 +1961,15 @@
(define_insn "loop_end"
[(set (pc)
(if_then_else (ne (match_operand:SI 0 "nonimmediate_operand" "+a*d,*b*v*f,m")
(if_then_else (ne (match_operand:SI 2 "nonimmediate_operand" "0,0,0")
(const_int 1))
(label_ref (match_operand 1 "" ""))
(pc)))
(set (match_dup 0)
(plus (match_dup 0)
(set (match_operand:SI 0 "nonimmediate_operand" "=a*d,*b*v*f,m")
(plus (match_dup 2)
(const_int -1)))
(unspec [(const_int 0)] UNSPEC_LSETUP_END)
(clobber (match_scratch:SI 2 "=X,&r,&r"))]
(clobber (match_scratch:SI 3 "=X,&r,&r"))]
""
"@
/* loop end %0 %l1 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment