diff options
author | Bob Wilson <bob.wilson@acm.org> | 2002-03-20 18:37:43 +0000 |
---|---|---|
committer | Bob Wilson <bwilson@gcc.gnu.org> | 2002-03-20 18:37:43 +0000 |
commit | 3a307de4312c07a7a4c4f84bbd4bdf1de57b24f9 (patch) | |
tree | fc3dd1dfe7ee1ac0331377d64d5b8cc0f07a3896 | |
parent | 7d7e539c5bbfdb631b7d7476e6ef14fbb09c50aa (diff) | |
download | gcc-3a307de4312c07a7a4c4f84bbd4bdf1de57b24f9.zip gcc-3a307de4312c07a7a4c4f84bbd4bdf1de57b24f9.tar.gz gcc-3a307de4312c07a7a4c4f84bbd4bdf1de57b24f9.tar.bz2 |
xtensa.md: Remove unused type attributes.
* config/xtensa/xtensa.md: Remove unused type attributes.
(adddi_carry, subddi_carry): Change type attribute to "multi".
From-SVN: r51078
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/xtensa/xtensa.md | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 47c6ca9..25fa8e1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-03-20 Bob Wilson <bob.wilson@acm.org> + + * config/xtensa/xtensa.md: Remove unused type attributes. + (adddi_carry, subddi_carry): Change type attribute to "multi". + 2002-03-19 Dale Johannesen <dalej@apple.com> PR optimization/5999, middle-end/5731 diff --git a/gcc/config/xtensa/xtensa.md b/gcc/config/xtensa/xtensa.md index abf8307..e261b77 100644 --- a/gcc/config/xtensa/xtensa.md +++ b/gcc/config/xtensa/xtensa.md @@ -46,7 +46,7 @@ ;; (define_attr "type" - "unknown,branch,jump,call,load,store,move,arith,multi,nop,misc,farith,fmadd,fdiv,fsqrt,fconv,fload,fstore,mul16,mul32,div32,mac16,rsr,wsr,udef_move,udef_loadi,udef_storei,udef_loadiu,udef_storeiu,udef_conv,udef_conv_loadiu,udef_conv_storeiu" + "unknown,jump,call,load,store,move,arith,multi,nop,farith,fmadd,fdiv,fsqrt,fconv,fload,fstore,mul16,mul32,div32,mac16,rsr,wsr" (const_string "unknown")) (define_attr "mode" @@ -122,7 +122,7 @@ (match_dup 0)))] "" "bgeu\\t%1, %2, 0f\;addi\\t%0, %0, 1\;0:" - [(set_attr "type" "arith") + [(set_attr "type" "multi") (set_attr "mode" "SI") (set_attr "length" "6")]) @@ -221,7 +221,7 @@ (match_operand:SI 2 "register_operand" "r"))))] "" "bgeu\\t%1, %2, 0f\;addi\\t%0, %0, -1\;0:" - [(set_attr "type" "arith") + [(set_attr "type" "multi") (set_attr "mode" "SI") (set_attr "length" "6")]) |