Commit 07738b87 by Kaushik Phatak Committed by Jeff Law

h8300.md (can_delay): Fix attibute condition.

	* config/h8300/h8300.md (can_delay): Fix attibute condition.

From-SVN: r156480
parent b7200e3f
2010-02-01 Kaushik Phatak <kaushik.phatak@kpitcummins.com>
* config/h8300/h8300.md (can_delay): Fix attibute condition.
2010-02-03 Vladimir Makarov <vmakarov@redhat.com> 2010-02-03 Vladimir Makarov <vmakarov@redhat.com>
PR rtl-optimizations/42941 PR rtl-optimizations/42941
......
;; GCC machine description for Renesas H8/300 ;; GCC machine description for Renesas H8/300
;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010
;; Free Software Foundation, Inc. ;; Free Software Foundation, Inc.
;; Contributed by Steve Chamberlain (sac@cygnus.com), ;; Contributed by Steve Chamberlain (sac@cygnus.com),
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
(define_attr "can_delay" "no,yes" (define_attr "can_delay" "no,yes"
(cond [(eq_attr "type" "branch,bitbranch,call") (cond [(eq_attr "type" "branch,bitbranch,call")
(const_string "no") (const_string "no")
(ne (symbol_ref "get_attr_length (insn)") (const_int 2)) (geu (symbol_ref "get_attr_length (insn)") (const_int 2))
(const_string "no")] (const_string "no")]
(const_string "yes"))) (const_string "yes")))
......
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