diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-21 04:32:54 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-21 04:32:54 +0000 |
commit | b07b4e490d98864f273293961c716f01f2954bc3 (patch) | |
tree | 23e47e9cfa0cd805f9b37dcca1059388cc9e0a7f /gcc | |
parent | 13832d154c2cf300a7b3958ae3f8cb90e7abef05 (diff) | |
download | gcc-b07b4e490d98864f273293961c716f01f2954bc3.zip gcc-b07b4e490d98864f273293961c716f01f2954bc3.tar.gz gcc-b07b4e490d98864f273293961c716f01f2954bc3.tar.bz2 |
(movdi, movdf, movxf): Delete the & from load case.
From-SVN: r5856
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/m68k.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index 1cb6467..460e1ca 100644 --- a/gcc/config/m68k/m68k.md +++ b/gcc/config/m68k/m68k.md @@ -1109,7 +1109,7 @@ }") (define_insn "movdf" - [(set (match_operand:DF 0 "general_operand" "=rm,&rf,&rof<>,y,rm,x,!x,!rm") + [(set (match_operand:DF 0 "general_operand" "=rm,rf,&rof<>,y,rm,x,!x,!rm") (match_operand:DF 1 "general_operand" "rf,m,rofE<>,rmE,y,xH,rm,x"))] ; [(set (match_operand:DF 0 "general_operand" "=rm,&rf,&rof<>") ; (match_operand:DF 1 "general_operand" "rf,m,rofF<>"))] @@ -1217,7 +1217,7 @@ ") (define_insn "" - [(set (match_operand:XF 0 "nonimmediate_operand" "=rm,&rf,&rof<>") + [(set (match_operand:XF 0 "nonimmediate_operand" "=rm,rf,&rof<>") (match_operand:XF 1 "nonimmediate_operand" "rf,m,rof<>"))] "! TARGET_68881" "* @@ -1260,7 +1260,7 @@ ;; movdi can apply to fp regs in some cases (define_insn "movdi" ;; Let's see if it really still needs to handle fp regs, and, if so, why. - [(set (match_operand:DI 0 "general_operand" "=rm,&r,&ro<>,y,rm,!*x,!rm") + [(set (match_operand:DI 0 "general_operand" "=rm,r,&ro<>,y,rm,!*x,!rm") (match_operand:DI 1 "general_operand" "rF,m,roi<>F,rmiF,y,rmF,*x"))] ; [(set (match_operand:DI 0 "general_operand" "=rm,&r,&ro<>,!&rm,!&f,y,rm,x,!x,!rm") ; (match_operand:DI 1 "general_operand" "r,m,roi<>,fF,rfmF,rmi,y,rm,x"))] |