diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1992-05-18 23:50:13 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1992-05-18 23:50:13 +0000 |
commit | c3f3d7e145df868a9c362cf0583948ec76bf6ac1 (patch) | |
tree | cc5572ac4ebac027db4975116c43165d741074cd /gcc | |
parent | 30979105ae9e550241a4cc277403a395950517cc (diff) | |
download | gcc-c3f3d7e145df868a9c362cf0583948ec76bf6ac1.zip gcc-c3f3d7e145df868a9c362cf0583948ec76bf6ac1.tar.gz gcc-c3f3d7e145df868a9c362cf0583948ec76bf6ac1.tar.bz2 |
*** empty log message ***
From-SVN: r1012
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 4369b29..b252d27 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -138,10 +138,10 @@ (define_function_unit "memory" 1 0 (eq_attr "type" "store") 1 0) -(define_function_unit "fp_comp" 1 0 (eq_attr "type" "fcmp") 2 0) +(define_function_unit "addr" 1 0 (eq_attr "type" "fcmp") 2 0) -(define_function_unit "transfer" 1 0 (eq_attr "type" "xfer") 2 0) -(define_function_unit "transfer" 1 0 (eq_attr "type" "hilo") 3 0) +(define_function_unit "memory" 1 0 (eq_attr "type" "xfer") 2 0) +(define_function_unit "memory" 1 0 (eq_attr "type" "hilo") 3 0) (define_function_unit "imuldiv" 1 1 (and (eq_attr "type" "imul") (eq_attr "cpu" "!r3000,r4000")) @@ -235,8 +235,8 @@ (and (eq_attr "type" "fdiv") (and (eq_attr "mode" "DF") (eq_attr "cpu" "r6000"))) 16 32) -(define_function_unit "sqrt" 1 1 (and (eq_attr "type" "fsqrt") (eq_attr "mode" "SF")) 54 108) -(define_function_unit "sqrt" 1 1 (and (eq_attr "type" "fsqrt") (eq_attr "mode" "DF")) 112 224) +(define_function_unit "divide" 1 1 (and (eq_attr "type" "fsqrt") (eq_attr "mode" "SF")) 54 108) +(define_function_unit "divide" 1 1 (and (eq_attr "type" "fsqrt") (eq_attr "mode" "DF")) 112 224) ;; The following functional units do not use the cpu type, and use @@ -2857,9 +2857,9 @@ move\\t%0,%z4\\n\\ } if (operands[2] != pc_rtx) - return (truth) ? \"%*j\\t%2\" : \"#bne\\t%z1,%.,%2\"; + return (truth) ? \"%*beq%?\\t%.,%.,%2\" : \"%*bne%?\\t%.,%.,%2\"; else - return (truth) ? \"#bne\\t%z1,%.,%3\" : \"%*j\\t%3\"; + return (truth) ? \"%*bne%?\\t%.,%.,%2\" : \"%*beq%?\\t%.,%.,%2\"; } if (operands[2] != pc_rtx) |