diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-11 04:03:55 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-11 04:03:55 +0000 |
commit | dfb173f9485cb80cd2899b1b1698b2b0f83ae62e (patch) | |
tree | f1737e4ea4b01b25408cbc4fb97b882ee4a09882 | |
parent | 77016b8feabe8a1f0b989f3f425f41fc002fe590 (diff) | |
download | ppe42-gcc-dfb173f9485cb80cd2899b1b1698b2b0f83ae62e.tar.gz ppe42-gcc-dfb173f9485cb80cd2899b1b1698b2b0f83ae62e.zip |
* config/h8300/h8300.c (print_operand): Remove support for
operand character 'b'.
Add the AND case to operand character 'c'.
* config/h8300/h8300.md (two anonymous patterns): Replace
operand character 'b' with 'c'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67750 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/config/h8300/h8300.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index 217c3155d91..28573d0abf9 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -2621,7 +2621,7 @@ (match_operand:HI 2 "immediate_operand" "n")) (match_operand:HI 3 "bit_operand" "0")]))] "" - "bld %Z2,%Y1\;%b4 #0,%R0\;bst #0,%R0; bl1" + "bld %Z2,%Y1\;b%c4 #0,%R0\;bst #0,%R0; bl1" [(set_attr "cc" "clobber") (set_attr "length" "6") (set_attr "adjust_length" "no")]) @@ -2636,7 +2636,7 @@ (const_int 1) (match_operand:HI 4 "immediate_operand" "n"))]))] "" - "bld %Z2,%Y1\;%b5 %Z4,%Y3\;bst #0,%R0; bl3" + "bld %Z2,%Y1\;b%c5 %Z4,%Y3\;bst #0,%R0; bl3" [(set_attr "cc" "clobber") (set_attr "length" "6") (set_attr "adjust_length" "no")]) |