diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2003-03-18 18:28:53 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2003-03-18 18:28:53 +0000 |
commit | fe03d631dfe3ea42d3182f544c184d6aeef0a6a3 (patch) | |
tree | 74a0bbb973c99a3092dc6280df8e85c57300c261 /gcc | |
parent | 45183e0380cf0cb4c9d3f3e1f514bd0beb2739a1 (diff) | |
download | gcc-fe03d631dfe3ea42d3182f544c184d6aeef0a6a3.zip gcc-fe03d631dfe3ea42d3182f544c184d6aeef0a6a3.tar.gz gcc-fe03d631dfe3ea42d3182f544c184d6aeef0a6a3.tar.bz2 |
* config/s390/s390.md ("movti", "movhi", "movqi"): Add "type" attribute.
From-SVN: r64542
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/s390/s390.md | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c259d56..e7554f2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-03-18 Ulrich Weigand <uweigand@de.ibm.com> + + * config/s390/s390.md ("movti", "movhi", "movqi"): Add "type" attribute. + Tue Mar 18 19:22:57 CET 2003 Jan Hubicka <jh@suse.cz> * alias.c (rtx_equal_for_memref_p): Assume that X and Y has been diff --git a/gcc/config/s390/s390.md b/gcc/config/s390/s390.md index fc8e33b..7ebf1c7 100644 --- a/gcc/config/s390/s390.md +++ b/gcc/config/s390/s390.md @@ -913,7 +913,8 @@ # # mvc\\t%O0(16,%R0),%1" - [(set_attr "op_type" "RSE,RSE,NN,NN,SS")]) + [(set_attr "op_type" "RSE,RSE,NN,NN,SS") + (set_attr "type" "lm,stm,*,*,cs")]) (define_split [(set (match_operand:TI 0 "nonimmediate_operand" "") @@ -1225,7 +1226,8 @@ lh\\t%0,%1 sth\\t%1,%0 mvc\\t%O0(2,%R0),%1" - [(set_attr "op_type" "RR,RI,RX,RX,SS")]) + [(set_attr "op_type" "RR,RI,RX,RX,SS") + (set_attr "type" "lr,*,*,store,cs")]) (define_peephole2 [(set (match_operand:HI 0 "register_operand" "") @@ -1266,7 +1268,8 @@ stc\\t%1,%0 mvi\\t%0,%b1 mvc\\t%O0(1,%R0),%1" - [(set_attr "op_type" "RR,RI,RX,RX,SI,SS")]) + [(set_attr "op_type" "RR,RI,RX,RX,SI,SS") + (set_attr "type" "lr,*,*,store,store,cs")]) (define_peephole2 [(set (match_operand:QI 0 "nonimmediate_operand" "") |