diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-18 00:42:39 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-18 00:42:39 +0000 |
commit | eb53e102b61d32451f72d80f54551b332d8e65c6 (patch) | |
tree | c97c9d6689169b1c042a218b207ecb047a186b00 /gcc/config/h8300/h8300.md | |
parent | bb1fe37e3034dc24afd10efe384b536215253127 (diff) | |
download | gcc-eb53e102b61d32451f72d80f54551b332d8e65c6.tar.gz |
* config/h8300/h8300-protos.h: Update the prototype of
fix_bit_operand().
* config/h8300/h8300.c (fix_bit_operand): Remove the second
argument "what".
* config/h8300/h8300.md: Update all callers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78006 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/h8300/h8300.md')
-rw-r--r-- | gcc/config/h8300/h8300.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index f18f007574b..4cb396df7b5 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -1202,7 +1202,7 @@ "" " { - if (fix_bit_operand (operands, 0, AND)) + if (fix_bit_operand (operands, AND)) DONE; }") @@ -1298,7 +1298,7 @@ "" " { - if (fix_bit_operand (operands, 1, IOR)) + if (fix_bit_operand (operands, IOR)) DONE; }") @@ -1339,7 +1339,7 @@ "" " { - if (fix_bit_operand (operands, 1, XOR)) + if (fix_bit_operand (operands, XOR)) DONE; }") |