summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1997-12-11 16:26:05 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1997-12-11 16:26:05 +0000
commit271a849987a2fcc3055bb7bfbf250704e1c7abba (patch)
tree14ba3dfecebffb68f2afc7348224d403c74620f6 /gcc/toplev.c
parent4207de9361b3bbbd54b511a73bb801e46e05a7f9 (diff)
downloadgcc-271a849987a2fcc3055bb7bfbf250704e1c7abba.tar.gz
Another handful of gcc-2.8 changes (will it ever go out the door?).
See ChangeLog.11 for details. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17040 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 12d567656f0..17318e25c44 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -1034,7 +1034,7 @@ get_run_time ()
return (rusage.ru_utime.tv_sec * 1000000 + rusage.ru_utime.tv_usec
+ rusage.ru_stime.tv_sec * 1000000 + rusage.ru_stime.tv_usec);
#else /* VMS */
- times (&vms_times);
+ times ((void *) &vms_times);
return (vms_times.proc_user_time + vms_times.proc_system_time) * 10000;
#endif
#endif