From: Richard Kenner Date: Tue, 21 Feb 1995 23:57:45 +0000 (-0500) Subject: (get_run_time): Return an approximate value for NT. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15f000972d998ae4b49dbc21f45ff4c5e7107ee1;p=gcc.git (get_run_time): Return an approximate value for NT. From-SVN: r9019 --- diff --git a/gcc/toplev.c b/gcc/toplev.c index 2d31fd7b76e..a348aa81770 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -931,15 +931,13 @@ int dump_time; int get_run_time () { -#ifdef WINNT - return 0; -#else +#ifndef WINNT #ifdef USG struct tms tms; #else #ifndef VMS struct rusage rusage; -#else /* VMS */ +#else struct { int proc_user_time; @@ -948,11 +946,17 @@ get_run_time () int child_system_time; } vms_times; #endif +#endif #endif if (quiet_flag) return 0; - +#ifdef WINNT + if (clock() < 0) + return 0; + else + return (clock() * 1000); +#else /* not WINNT */ #ifdef USG times (&tms); return (tms.tms_utime + tms.tms_stime) * (1000000 / HZ);