summaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-19 05:58:34 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-19 05:58:34 +0000
commit4d5cb40dc930d158298d8b2a2b3fb648f682cd8b (patch)
tree67792e9e202a99207575f0dab410867ee01f8969 /gcc/config
parent22e1623575d48cb049ae30329f273d34b4f968ab (diff)
downloadgcc-4d5cb40dc930d158298d8b2a2b3fb648f682cd8b.tar.gz
* config/arm/arm.md (generic_sched): Make const.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90897 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/arm/arm.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md
index 375f92eef54..7f28141dce1 100644
--- a/gcc/config/arm/arm.md
+++ b/gcc/config/arm/arm.md
@@ -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")