From 33b0d00f2a41e9a0dcdfeeabfd61242ea46a9b04 Mon Sep 17 00:00:00 2001
From: Andreas Jaeger <aj@suse.de>
Date: Mon, 16 Jun 2003 22:40:47 +0200
Subject: [PATCH] timevar.c (get_run_time): Remove function provided also by
 libiberty.

	* timevar.c (get_run_time): Remove function provided also by
	libiberty.
	* timevar.h: Remove get_run_time declaration.

From-SVN: r68037
---
 gcc/ChangeLog |  6 ++++++
 gcc/timevar.c | 13 +------------
 gcc/timevar.h |  3 +--
 3 files changed, 8 insertions(+), 14 deletions(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 35afeb5b7de7..b515689e1e36 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2003-06-16  Andreas Jaeger  <aj@suse.de>
+
+	* timevar.c (get_run_time): Remove function provided also by
+	libiberty.
+	* timevar.h: Remove get_run_time declaration.
+
 2003-06-16  Kazu Hirata  <kazu@cs.umass.edu>
 
 	* config/m68hc11/m68hc11.c (m68hc11_rtx_costs): Remove
diff --git a/gcc/timevar.c b/gcc/timevar.c
index 534001bfe10e..d793029add98 100644
--- a/gcc/timevar.c
+++ b/gcc/timevar.c
@@ -1,5 +1,5 @@
 /* Timing variables for measuring compiler performance.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
    Contributed by Alex Samuel <samuel@codesourcery.com>
 
 This file is part of GCC.
@@ -513,17 +513,6 @@ timevar_print (fp)
 	  || defined (HAVE_WALL_TIME) */
 }
 
-/* Returns time (user + system) used so far by the compiler process,
-   in microseconds.  */
-
-long
-get_run_time ()
-{
-  struct timevar_time_def total_elapsed;
-  timevar_get (TV_TOTAL, &total_elapsed);
-  return total_elapsed.user + total_elapsed.sys;
-}
-
 /* Prints a message to stderr stating that time elapsed in STR is
    TOTAL (given in microseconds).  */
 
diff --git a/gcc/timevar.h b/gcc/timevar.h
index abcbb95dee06..5de57ed6e9d3 100644
--- a/gcc/timevar.h
+++ b/gcc/timevar.h
@@ -1,5 +1,5 @@
 /* Timing variables for measuring compiler performance.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
    Contributed by Alex Samuel <samuel@codesourcery.com>
 
    This file is part of GCC.
@@ -88,7 +88,6 @@ extern void timevar_get PARAMS ((timevar_id_t, struct timevar_time_def *));
 extern void timevar_print PARAMS ((FILE *));
 
 /* Provided for backward compatibility.  */
-extern long get_run_time PARAMS ((void));
 extern void print_time PARAMS ((const char *, long));
 
 #endif /* ! GCC_TIMEVAR_H */
-- 
GitLab