diff options
author | Richard Henderson <rth@redhat.com> | 2007-03-01 08:30:38 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2007-03-01 08:30:38 -0800 |
commit | ceca734e8f8b368ab4087ce3970118775735f593 (patch) | |
tree | b6d11fc471a5238e81dafa6b6bd684ff01ef7366 /gcc/expr.h | |
parent | 5f81370d9f02d82b58964b104eb60197b7e773ef (diff) | |
download | gcc-ceca734e8f8b368ab4087ce3970118775735f593.zip gcc-ceca734e8f8b368ab4087ce3970118775735f593.tar.gz gcc-ceca734e8f8b368ab4087ce3970118775735f593.tar.bz2 |
expr.c (emit_move_complex_push): Export.
* expr.c (emit_move_complex_push): Export.
(emit_move_complex_parts): Split out from ...
(emit_move_complex): ... here.
* expr.h (emit_move_complex_push, emit_move_complex_parts): Declare.
* config/i386/i386.md (movcdi): New.
From-SVN: r122432
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -465,6 +465,9 @@ extern rtx emit_move_insn (rtx, rtx); /* Emit insns to set X from Y, with no frills. */ extern rtx emit_move_insn_1 (rtx, rtx); +extern rtx emit_move_complex_push (enum machine_mode, rtx, rtx); +extern rtx emit_move_complex_parts (rtx, rtx); + /* Push a block of length SIZE (perhaps variable) and return an rtx to address the beginning of the block. */ extern rtx push_block (rtx, int, int); |