diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-02-07 02:11:27 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-02-07 02:11:27 +0000 |
commit | dc7cdd37ee1a4fc369a582df56a4aa0e32baede3 (patch) | |
tree | 1b375a4749d5db755163291df7cd94b2113f649e /gcc/expr.h | |
parent | 53b0dc695c49969a3c1f628115395987c1b5debc (diff) | |
download | gcc-dc7cdd37ee1a4fc369a582df56a4aa0e32baede3.tar.gz |
PR target/60077
* expr.c (emit_move_resolve_push): Export; be bit more selective
on when to clear alias set.
* expr.h (emit_move_resolve_push): Declare.
* function.h (struct function): Add tail_call_marked.
* tree-tailcall.c (optimize_tail_call): Set tail_call_marked.
* config/i386/i386-protos.h (ix86_expand_push): Remove.
* config/i386/i386.md (TImode move expander): De not call
ix86_expand_push.
(FP push expanders): Preserve memory attributes.
* config/i386/sse.md (push<mode>1): Remove.
* config/i386/i386.c (ix86_expand_vector_move): Handle push
operation.
(ix86_expand_push): Remove.
* config/i386/mmx.md (push<mode>1): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@207587 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index da5d4a6d56f..5111f06e856 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -413,6 +413,7 @@ 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); +extern rtx emit_move_resolve_push (enum machine_mode, rtx); /* Push a block of length SIZE (perhaps variable) and return an rtx to address the beginning of the block. */ |