svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets.
* svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets. * recog.c (memory_address_p): Mark parameter with ATTRIBUTE_UNUSED. * regclass.c (choose_hard_reg_mode): Likewise. * reload.c (find_valid_class, strict_memory_address_p): Likewise. * reorg.c (optimize_skip): Wrap prototype in macro conditionals. From-SVN: r31364
This commit is contained in:
parent
07c88314a3
commit
80cca0e191
6 changed files with 19 additions and 5 deletions
|
@ -1,3 +1,15 @@
|
|||
2000-01-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets.
|
||||
|
||||
* recog.c (memory_address_p): Mark parameter with ATTRIBUTE_UNUSED.
|
||||
|
||||
* regclass.c (choose_hard_reg_mode): Likewise.
|
||||
|
||||
* reload.c (find_valid_class, strict_memory_address_p): Likewise.
|
||||
|
||||
* reorg.c (optimize_skip): Wrap prototype in macro conditionals.
|
||||
|
||||
2000-01-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* c-common.c: PROTO -> PARAMS.
|
||||
|
|
|
@ -61,7 +61,7 @@ Boston, MA 02111-1307, USA.
|
|||
#undef ASM_FILE_START
|
||||
#define ASM_FILE_START(FILE) \
|
||||
do { output_file_directive ((FILE), main_input_filename); \
|
||||
if (optimize) ASM_FILE_START_1 (FILE); \
|
||||
if (optimize) { ASM_FILE_START_1 (FILE); } \
|
||||
} while (0)
|
||||
|
||||
/* By default, do nothing: a few machines support .optim, but not most. */
|
||||
|
|
|
@ -1230,7 +1230,7 @@ pop_operand (op, mode)
|
|||
|
||||
int
|
||||
memory_address_p (mode, addr)
|
||||
enum machine_mode mode;
|
||||
enum machine_mode mode ATTRIBUTE_UNUSED;
|
||||
register rtx addr;
|
||||
{
|
||||
if (GET_CODE (addr) == ADDRESSOF)
|
||||
|
|
|
@ -553,7 +553,7 @@ memory_move_secondary_cost (mode, class, in)
|
|||
|
||||
enum machine_mode
|
||||
choose_hard_reg_mode (regno, nregs)
|
||||
int regno;
|
||||
int regno ATTRIBUTE_UNUSED;
|
||||
int nregs;
|
||||
{
|
||||
enum machine_mode found_mode = VOIDmode, mode;
|
||||
|
|
|
@ -652,7 +652,7 @@ clear_secondary_mem ()
|
|||
|
||||
static enum reg_class
|
||||
find_valid_class (m1, n)
|
||||
enum machine_mode m1;
|
||||
enum machine_mode m1 ATTRIBUTE_UNUSED;
|
||||
int n;
|
||||
{
|
||||
int class;
|
||||
|
@ -1975,7 +1975,7 @@ hard_reg_set_here_p (beg_regno, end_regno, x)
|
|||
|
||||
int
|
||||
strict_memory_address_p (mode, addr)
|
||||
enum machine_mode mode;
|
||||
enum machine_mode mode ATTRIBUTE_UNUSED;
|
||||
register rtx addr;
|
||||
{
|
||||
GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
|
||||
|
|
|
@ -188,7 +188,9 @@ static rtx add_to_delay_list PROTO((rtx, rtx));
|
|||
static rtx delete_from_delay_slot PROTO((rtx));
|
||||
static void delete_scheduled_jump PROTO((rtx));
|
||||
static void note_delay_statistics PROTO((int, int));
|
||||
#if defined(ANNUL_IFFALSE_SLOTS) || defined(ANNUL_IFTRUE_SLOTS)
|
||||
static rtx optimize_skip PROTO((rtx));
|
||||
#endif
|
||||
static int get_jump_flags PROTO((rtx, rtx));
|
||||
static int rare_destination PROTO((rtx));
|
||||
static int mostly_true_jump PROTO((rtx, rtx));
|
||||
|
|
Loading…
Add table
Reference in a new issue