diff options
author | ansgar <ansgar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-13 16:05:23 +0000 |
---|---|---|
committer | ansgar <ansgar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-13 16:05:23 +0000 |
commit | 48fefb5925f725b13c78a3398740625b120c3541 (patch) | |
tree | 3f8d72c92b61aea9035a9bb9e6d44c030f8e1785 /gcc/expr.h | |
parent | 89ff5f50469e3dd91070a8f8e22cc1116884b192 (diff) | |
download | gcc-48fefb5925f725b13c78a3398740625b120c3541.tar.gz |
2003-03-13 Ansgar Esztermann <ansgar@thphy.uni-duesseldorf.de>
* Makefile.in (dojump.o): New target.
* dojump.c: New file.
(init_pending_stack_adjust): Moved here from expr.c.
(clear_pending_stack_adjust): Likewise.
(do_pending_stack_adjust): Likewise.
(jumpifnot): Likewise.
(jumpif): Likewise.
(do_jump): Likewise.
(do_jump_by_parts_greater): Likewise.
(do_jump_by_parts_greater_rtx): Likewise.
(do_jump_by_parts_equality): Likewise.
(do_jump_by_parts_equality_rtx): Likewise.
(compare_from_rtx): Likewise.
(do_compare_rtx_and_jump): Likewise.
(do_compare_and_jump): Likewise.
* expr.c (init_pending_stack_adjust): Removed to dojump.c.
(clear_pending_stack_adjust): Likewise.
(do_pending_stack_adjust): Likewise.
(jumpifnot): Likewise.
(jumpif): Likewise.
(do_jump): Likewise.
(do_jump_by_parts_greater): Likewise.
(do_jump_by_parts_greater_rtx): Likewise.
(do_jump_by_parts_equality): Likewise.
(do_jump_by_parts_equality_rtx): Likewise.
(compare_from_rtx): Likewise.
(do_compare_rtx_and_jump): Likewise.
(do_compare_and_jump): Likewise.
(placeholder_list): Made declaration extern.
* expr.h (placeholder_list): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64309 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index 82c5166d711..cf794fc7401 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -791,3 +791,5 @@ extern void mark_seen_cases PARAMS ((tree, unsigned char *, #endif extern int vector_mode_valid_p PARAMS ((enum machine_mode)); + +extern tree placeholder_list; |