]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ip2k.c (commands_in_file): Variable removed.
authorDenis Chertykov <denisc@overta.ru>
Tue, 13 Aug 2002 09:58:37 +0000 (09:58 +0000)
committerDenis Chertykov <denisc@gcc.gnu.org>
Tue, 13 Aug 2002 09:58:37 +0000 (13:58 +0400)
* config/ip2k/ip2k.c (commands_in_file): Variable removed.
(function_epilogue): Don't calculate function size.
(ip2k_set_compare): Don't use lookup_const_double.
(asm_file_start): Initialization of commands_in_file removed.
(asm_file_end): Output of commands_in_file removed.

* config/ip2k/ip2k.c (CPP_PREDEFINES): Remove definition of
__INT_MAX__.

From-SVN: r56249

gcc/ChangeLog
gcc/config/ip2k/ip2k.c
gcc/config/ip2k/ip2k.h

index 6284939c4e15443196fa4d74bd58ba7a61239bfd..2230f7779acfdbf322ca36bdfb65f88e5ec89c13 100644 (file)
@@ -1,3 +1,14 @@
+2002-08-13  Denis Chertykov  <denisc@overta.ru>
+
+       * config/ip2k/ip2k.c (commands_in_file): Variable removed.
+       (function_epilogue): Don't calculate function size.
+       (ip2k_set_compare): Don't use lookup_const_double.
+       (asm_file_start): Initialization of commands_in_file removed.
+       (asm_file_end): Output of commands_in_file removed.
+       
+       * config/ip2k/ip2k.c (CPP_PREDEFINES): Remove definition of
+       __INT_MAX__.
+
 2002-08-13  Neil Booth  <neil@daikokuya.co.uk>
 
        * c-opts.c (c_common_init_options): Check option array is
index 56228981d9d9921fa50b3d04dd15e020487441f8..94845fabfd274b0350dd735a692020b2d1ef28d1 100644 (file)
@@ -90,9 +90,6 @@ static void mdr_try_wreg_elim PARAMS ((rtx));
 
 struct gcc_target targetm = TARGET_INITIALIZER;
 
-/* Commands count in the compiled file.  */
-static int commands_in_file;
-
 /* Commands in the functions prologues in the compiled file.  */
 static int commands_in_prologues;
 
@@ -304,7 +301,6 @@ function_epilogue (file, size)
 {
   int leaf_func_p;
   int reg,savelimit;
-  int function_size;
   rtx operands[2];             /* Dummy used by OUT_ASn  */
   int need_ret = 1;
 
@@ -324,9 +320,6 @@ function_epilogue (file, size)
     }
 
   leaf_func_p = leaf_function_p ();
-  function_size = (INSN_ADDRESSES (INSN_UID (get_last_insn ()))
-                  - INSN_ADDRESSES (INSN_UID (get_insns ())));
-  
   epilogue_size = 0;
   fprintf (file, "/* epilogue: frame size=%d */\n", size);
 
@@ -508,9 +501,6 @@ function_epilogue (file, size)
     }
   
   fprintf (file, "/* epilogue end (size=%d) */\n", epilogue_size);
-  fprintf (file, "/* function %s size %d (%d) */\n", current_function_name,
-          prologue_size + function_size + epilogue_size, function_size);
-  commands_in_file += prologue_size + function_size + epilogue_size;
   commands_in_prologues += prologue_size;
   commands_in_epilogues += epilogue_size;
 }
@@ -1091,7 +1081,7 @@ ip2k_set_compare (x, y)
     {
       rtx value;
       size_t i;
-      
+
       value = rtx_alloc (CONST_DOUBLE);
       PUT_MODE (value, VOIDmode);
 
@@ -1101,7 +1091,7 @@ ip2k_set_compare (x, y)
       for (i = 2; i < (sizeof CONST_DOUBLE_FORMAT - 1); i++)
        XWINT (value, i) = 0;
       
-      y = lookup_const_double (value);
+      y = value;
     }
   
   ip2k_compare_operands[0] = x;
@@ -3196,7 +3186,6 @@ asm_file_start (file)
 {
   output_file_directive (file, main_input_filename);
   
-  commands_in_file = 0;
   commands_in_prologues = 0;
   commands_in_epilogues = 0;
 }
@@ -3210,12 +3199,8 @@ asm_file_end (file)
 {
   fprintf
     (file,
-     "/* File %s: code %4d = 0x%04x (%4d), prologues %3d, epilogues %3d */\n",
-     main_input_filename,
-     commands_in_file,
-     commands_in_file,
-     commands_in_file - commands_in_prologues - commands_in_epilogues,
-     commands_in_prologues, commands_in_epilogues);
+     "/* File %s: prologues %3d, epilogues %3d */\n",
+     main_input_filename, commands_in_prologues, commands_in_epilogues);
 }
 
 /* Cost functions.  */
index d8aa1d8d9976cdcd24e2d9cf887dfaed3f27ac4c..379682d87bbb447e991f2e977c19ae4d76063631 100644 (file)
@@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA.  */
 #undef ASM_SPEC                        /* But we have a GAS assembler.  */
 
 #define CPP_PREDEFINES \
-  "-DIP2K -D__INT_MAX__=SHRT_MAX -D_DOUBLE_IS_32BITS -D__BUFSIZ__=512 -D__FILENAME_MAX__=128"
+  "-DIP2K -D_DOUBLE_IS_32BITS -D__BUFSIZ__=512 -D__FILENAME_MAX__=128"
 /* Define this to be a string constant containing `-D' options to
    define the predefined macros that identify this machine and system.
    These macros will be predefined unless the `-ansi' option is