diff options
Diffstat (limited to 'gcc/timevar.h')
-rw-r--r-- | gcc/timevar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/timevar.h b/gcc/timevar.h index 149751c3467..ac01a2994a5 100644 --- a/gcc/timevar.h +++ b/gcc/timevar.h @@ -53,14 +53,14 @@ struct timevar_time_def { /* User time in this process. */ - float user; + double user; /* System time (if applicable for this host platform) in this process. */ - float sys; + double sys; /* Wall clock time. */ - float wall; + double wall; }; /* An enumeration of timing variable identifiers. Constructed from |