Warning fixes:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Fri, 6 Mar 1998 11:03:35 +0000 (11:03 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Fri, 6 Mar 1998 11:03:35 +0000 (11:03 +0000)
        * mips/mips.h: Prototype `machine_dependent_reorg'.
        (ASM_OUTPUT_ALIGN): Remove unused variable `mask'.

From-SVN: r18431

gcc/ChangeLog
gcc/config/mips/mips.h

index 2cfb382db203495c1afb021b74d695cd83e35779..1d0478cfd735a3ca01e2e2c5abdee896b074514f 100644 (file)
@@ -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.
index 46ad8c80c322af449388272cbdccbf3cbd7d3cdd..d91501533585ac5b168eed8395ab4052f2ddbb33 100644 (file)
@@ -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.  */