i386.md (leave, [...]): Adjust pattern to match what insn does.

* config/i386/i386.md (leave, leave_rex64): Adjust pattern to match
	what insn does.

From-SVN: r47846
This commit is contained in:
Richard Kenner 2001-12-10 14:30:11 +00:00 committed by Richard Kenner
parent 26c4de51c9
commit 6fc5dc671c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Mon Dec 10 09:19:11 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* config/i386/i386.md (leave, leave_rex64): Adjust pattern to match
what insn does.
2001-12-10 Joseph S. Myers <jsm28@cam.ac.uk>
* doc/cpp.texi: Don't condition menus on @ifinfo. Condition the

View File

@ -13715,7 +13715,7 @@
(define_insn "leave"
[(set (reg:SI 7) (plus:SI (reg:SI 6) (const_int 4)))
(set (reg:SI 6) (mem:SI (reg:SI 7)))
(set (reg:SI 6) (mem:SI (reg:SI 6)))
(clobber (mem:BLK (scratch)))]
"!TARGET_64BIT"
"leave"
@ -13728,7 +13728,7 @@
(define_insn "leave_rex64"
[(set (reg:DI 7) (plus:DI (reg:DI 6) (const_int 8)))
(set (reg:DI 6) (mem:DI (reg:DI 7)))
(set (reg:DI 6) (mem:DI (reg:DI 6)))
(clobber (mem:BLK (scratch)))]
"TARGET_64BIT"
"leave"