Commit e648d85a by Ian Lance Taylor Committed by Ian Lance Taylor

* config/arm/arm.md (generic_sched): Make const.

From-SVN: r90897
parent 0bdb5458
2004-11-19 Ian Lance Taylor <ian@wasabisystems.com>
* config/arm/arm.md (generic_sched): Make const.
2004-11-19 Kazu Hirata <kazu@cs.umass.edu>
* emit-rtl.c (classify_insn): Make it static.
......
......@@ -297,11 +297,11 @@
;; True if the generic scheduling description should be used.
(define_attr "generic_sched" "yes,no"
(if_then_else
(eq_attr "tune" "arm926ejs,arm1026ejs,arm1136js,arm1136jfs")
(const_string "no")
(const_string "yes")))
(const (if_then_else
(eq_attr "tune" "arm926ejs,arm1026ejs,arm1136js,arm1136jfs")
(const_string "no")
(const_string "yes"))))
(include "arm-generic.md")
(include "arm926ejs.md")
(include "arm1026ejs.md")
......
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