diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-18 21:33:23 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-18 21:33:23 +0000 |
commit | 083a2b5efc1c99bf5876b5dee828230e4a3faa77 (patch) | |
tree | b29d6812261abeb25b182a176f35382f12cb98bd /gcc/regs.h | |
parent | 34f6bd81bda38e680764f4ffd2405ac4123b9a3d (diff) | |
download | gcc-083a2b5efc1c99bf5876b5dee828230e4a3faa77.tar.gz |
* alias.c: Minor reformatting.
* flow.c: Likewise.
* regs.h: Likewise.
* stor-layout.c: Likewise.
* fold-const.c: Likewise.
(OVERFLOW_SUM_SIGN): Renamed from overflow_sum_sign.
(struct cb_args, const_binop_1, const_binop): Pass type of arg,
not arg itself.
(size_int_wide): Cache nodes even if garbage collecting.
(twoval_comparison_p): Reenable SAVE_EXPR case if operand
of SAVE_EXPR has no side effects.
* cse.c: Move a comment.
* tree.c: Minor reformatting.
(int_size_in_bytes): Return -1 if constant overflows.
* reload.c (combine_reloads): Do nothing if no output reload
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31017 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/regs.h')
-rw-r--r-- | gcc/regs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/regs.h b/gcc/regs.h index d0f7446a584..ff267febc30 100644 --- a/gcc/regs.h +++ b/gcc/regs.h @@ -1,5 +1,5 @@ /* Define per-register tables for data flow info and register allocation. - Copyright (C) 1987, 1993, 1994, 1995, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1987, 93-98, 1999 Free Software Foundation, Inc. This file is part of GNU CC. @@ -39,13 +39,13 @@ Boston, MA 02111-1307, USA. */ extern int max_regno; /* Register information indexed by register number */ -typedef struct reg_info_def { - /* fields set by reg_scan */ +typedef struct reg_info_def +{ /* fields set by reg_scan */ int first_uid; /* UID of first insn to use (REG n) */ int last_uid; /* UID of last insn to use (REG n) */ int last_note_uid; /* UID of last note to use (REG n) */ - /* fields set by both reg_scan and flow_analysis */ + /* fields set by reg_scan & flow_analysis */ int sets; /* # of times (REG n) is set */ /* fields set by flow_analysis */ |