diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-08-04 19:13:09 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-08-04 13:13:09 -0600 |
commit | 0aefc57b5d775faaf12c8e2599f7dc661c6fdd27 (patch) | |
tree | 9d8b5fad9eb10e4c5c82ae244447bafb8922b46e | |
parent | 430e7edf8f84519b058a1fca5417518b1b7dc8c9 (diff) | |
download | gcc-0aefc57b5d775faaf12c8e2599f7dc661c6fdd27.zip gcc-0aefc57b5d775faaf12c8e2599f7dc661c6fdd27.tar.gz gcc-0aefc57b5d775faaf12c8e2599f7dc661c6fdd27.tar.bz2 |
* pa.md (movqi, movhi patterns): Do not expose FP regs to regclass.
From-SVN: r28501
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/pa/pa.md | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fbe70a3..6fd7b2e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Aug 4 13:12:17 1999 Jeffrey A Law (law@cygnus.com) + + * pa.md (movqi, movhi patterns): Do not expose FP regs to regclass. + Wed Aug 4 11:53:55 1999 Tom Tromey <tromey@cygnus.com> * configure: Rebuilt. diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index c78692d..2ab9cd7 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -1783,8 +1783,8 @@ }") (define_insn "" - [(set (match_operand:HI 0 "reg_or_nonsymb_mem_operand" "=r,r,r,r,r,Q,*q,!f") - (match_operand:HI 1 "move_operand" "r,J,N,K,RQ,rM,rM,!fM"))] + [(set (match_operand:HI 0 "reg_or_nonsymb_mem_operand" "=r,r,r,r,r,Q,*q,!*f") + (match_operand:HI 1 "move_operand" "r,J,N,K,RQ,rM,rM,!*fM"))] "register_operand (operands[0], HImode) || reg_or_0_operand (operands[1], HImode)" "@ @@ -1945,8 +1945,8 @@ }") (define_insn "" - [(set (match_operand:QI 0 "reg_or_nonsymb_mem_operand" "=r,r,r,r,r,Q,*q,!f") - (match_operand:QI 1 "move_operand" "r,J,N,K,RQ,rM,rM,!fM"))] + [(set (match_operand:QI 0 "reg_or_nonsymb_mem_operand" "=r,r,r,r,r,Q,*q,!*f") + (match_operand:QI 1 "move_operand" "r,J,N,K,RQ,rM,rM,!*fM"))] "register_operand (operands[0], QImode) || reg_or_0_operand (operands[1], QImode)" "@ |