diff options
Diffstat (limited to 'gcc/timevar.h')
-rw-r--r-- | gcc/timevar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/timevar.h b/gcc/timevar.h index 5da847dff38..f6449bc28e0 100644 --- a/gcc/timevar.h +++ b/gcc/timevar.h @@ -45,7 +45,7 @@ */ /* This structure stores the various varieties of time that can be - measured. Times are stored in milliseconds. The time may be an + measured. Times are stored in seconds. The time may be an absolute time or a time difference; in the former case, the time base is undefined, except that the difference between two times produces a valid time difference. */ @@ -53,14 +53,14 @@ struct timevar_time_def { /* User time in this process. */ - unsigned long user; + float user; /* System time (if applicable for this host platform) in this process. */ - unsigned long sys; + float sys; /* Wall clock time. */ - unsigned long wall; + float wall; }; /* An enumeration of timing variable indentifiers. Constructed from |