diff options
author | Tom Wood <wood@gnu.org> | 1992-08-26 20:54:09 +0000 |
---|---|---|
committer | Tom Wood <wood@gnu.org> | 1992-08-26 20:54:09 +0000 |
commit | 9b1e668ec691e77582c5435dfdbbe6c2998919b3 (patch) | |
tree | c2d57d02b9dcd2098fc8eb493174fa14690b7f98 /gcc | |
parent | 53d2fb4f5f9e27454c39cfd0dd1d06470b10b79c (diff) | |
download | gcc-9b1e668ec691e77582c5435dfdbbe6c2998919b3.zip gcc-9b1e668ec691e77582c5435dfdbbe6c2998919b3.tar.gz gcc-9b1e668ec691e77582c5435dfdbbe6c2998919b3.tar.bz2 |
(define_function_unit): Correct and simplify memory unit
specification.
From-SVN: r1966
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m88k/m88k.md | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/gcc/config/m88k/m88k.md b/gcc/config/m88k/m88k.md index b7c3b59..f334998 100644 --- a/gcc/config/m88k/m88k.md +++ b/gcc/config/m88k/m88k.md @@ -28,7 +28,7 @@ (define_expand "m88k_sccs_id" [(match_operand:SI 0 "" "")] "" - "{ static char sccs_id[] = \"@(#)m88k.md 2.2.7.5 08/24/92 10:41:24\"; + "{ static char sccs_id[] = \"@(#)m88k.md 2.2.7.8 08/26/92 13:41:44\"; FAIL; }") ;; Attribute specifications @@ -150,19 +150,12 @@ (define_function_unit "mem100" 1 0 (and (eq_attr "type" "load") (eq_attr "cpu" "m88100")) 3 0) (define_function_unit "mem100" 1 0 - (and (eq_attr "type" "loadd") (eq_attr "cpu" "m88100")) 3 2 - [(eq_attr "type" "load,store,loadd,loada")]) + (and (eq_attr "type" "loadd") (eq_attr "cpu" "m88100")) 3 2) (define_function_unit "mem110" 1 0 - (and (eq_attr "type" "load") (eq_attr "cpu" "!m88100")) 3 2) + (and (eq_attr "type" "load,loadd") (eq_attr "cpu" "!m88100")) 3 2) (define_function_unit "mem110" 1 0 - (and (eq_attr "type" "loadd") (eq_attr "cpu" "!m88100")) 3 3 - [(eq_attr "type" "load")]) -(define_function_unit "mem110" 1 0 - (and (eq_attr "type" "loadd") (eq_attr "cpu" "!m88100")) 3 2 - [(eq_attr "type" "!load")]) -(define_function_unit "mem110" 1 0 - (and (eq_attr "type" "store") (eq_attr "cpu" "!m88100")) 0 2) + (and (eq_attr "type" "store") (eq_attr "cpu" "!m88100")) 1 2) ; The times are adjusted to include fp1 and fplast, but then are further ; adjusted based on the actual generated code. The notation to the right |