diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-01 16:30:38 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-01 16:30:38 +0000 |
commit | 6400303607d55034f097aab7a1fb4642a49dee27 (patch) | |
tree | b6d11fc471a5238e81dafa6b6bd684ff01ef7366 /gcc/expr.h | |
parent | 778242918b174912fe9555bc799a13653508842d (diff) | |
download | gcc-6400303607d55034f097aab7a1fb4642a49dee27.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122432 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index 32a0a51a373..bc3feeeab80 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -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); |