diff options
author | Kazu Hirata <kazu@hxi.com> | 2002-02-09 05:16:25 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-02-09 05:16:25 +0000 |
commit | a364bc90a34299d8125787afd76701d8c00f2b11 (patch) | |
tree | e69f8b725c771050b1acdeaae5e6d96a747bb0a4 | |
parent | a138247b54d4ef96223a66366845b03a9729d51f (diff) | |
download | gcc-a364bc90a34299d8125787afd76701d8c00f2b11.zip gcc-a364bc90a34299d8125787afd76701d8c00f2b11.tar.gz gcc-a364bc90a34299d8125787afd76701d8c00f2b11.tar.bz2 |
* config/h8300/h8300.md (iorhi3): Tighten the predicates.
From-SVN: r49633
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.md | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 37381dd..2455a68 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-02-09 Kazu Hirata <kazu@hxi.com> + + * config/h8300/h8300.md (iorhi3): Tighten the predicates. + 2002-02-09 Alexandre Oliva <aoliva@redhat.com> * config/sh/sh.h (REGISTER_NATURAL_MODE): Save part-clobbered diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index 35f2750..415eb85 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -1132,9 +1132,9 @@ }") (define_expand "iorhi3" - [(set (match_operand:HI 0 "general_operand" "") - (ior:HI (match_operand:HI 1 "general_operand" "") - (match_operand:HI 2 "general_operand" "")))] + [(set (match_operand:HI 0 "register_operand" "") + (ior:HI (match_operand:HI 1 "register_operand" "") + (match_operand:HI 2 "nonmemory_operand" "")))] "" "") |