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

From-SVN: r90897
This commit is contained in:
Ian Lance Taylor 2004-11-19 05:58:34 +00:00 committed by Ian Lance Taylor
parent 0bdb545887
commit e648d85ab2
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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")