diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-03-06 11:03:35 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-03-06 11:03:35 +0000 |
commit | 688f06038bccb9c102993dbd3228f71b1d5f4cb3 (patch) | |
tree | a826f932130f7aad3187c4746a51ca6f5bc42e57 /gcc | |
parent | 5a32a90c0b2304b065060d81d665a0d43a06efee (diff) | |
download | gcc-688f06038bccb9c102993dbd3228f71b1d5f4cb3.zip gcc-688f06038bccb9c102993dbd3228f71b1d5f4cb3.tar.gz gcc-688f06038bccb9c102993dbd3228f71b1d5f4cb3.tar.bz2 |
Warning fixes:
* mips/mips.h: Prototype `machine_dependent_reorg'.
(ASM_OUTPUT_ALIGN): Remove unused variable `mask'.
From-SVN: r18431
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.h | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2cfb382..1d0478c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Fri Mar 6 14:00:04 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * mips/mips.h: Prototype `machine_dependent_reorg'. + (ASM_OUTPUT_ALIGN): Remove unused variable `mask'. + Fri Mar 6 11:43:35 1998 Joern Rennecke (amylaar@cygnus.co.uk) * final.c (shorten_branches): Restore accidentally removed code. diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 46ad8c8..d915015 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -179,6 +179,7 @@ extern void gen_conditional_move (); extern struct rtx_def * gen_int_relational (); extern void init_cumulative_args (); extern int large_int (); +extern void machine_dependent_reorg (); extern int mips_address_cost (); extern void mips_asm_file_end (); extern void mips_asm_file_start (); @@ -4190,10 +4191,7 @@ do { \ to a multiple of 2**LOG bytes. */ #define ASM_OUTPUT_ALIGN(STREAM,LOG) \ -{ \ - int mask = (1 << (LOG)) - 1; \ - fprintf (STREAM, "\t.align\t%d\n", (LOG)); \ -} + fprintf (STREAM, "\t.align\t%d\n", (LOG)); /* This is how to output an assembler line to to advance the location counter by SIZE bytes. */ |