diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2013-02-19 05:56:08 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2013-02-19 05:56:08 -0500 |
commit | a62afd094b75f52471ff2556c62c9c5f53d705e6 (patch) | |
tree | c7d7d1dbbfd29c7bba2ef11a124cef014f5dff0c /src/base | |
parent | 08a5fd328b25d2ff431dc8f593c2d1bf3816b36e (diff) | |
download | gem5-a62afd094b75f52471ff2556c62c9c5f53d705e6.tar.xz |
scons: Fix warnings issued by clang 3.2svn (XCode 4.6)
This patch fixes the warnings that clang3.2svn emit due to the "-Wall"
flag. There is one case of an uninitialised value in the ARM neon ISA
description, and then a whole range of unused private fields that are
pruned.
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/statistics.hh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/base/statistics.hh b/src/base/statistics.hh index 13347b733..3c1a55623 100644 --- a/src/base/statistics.hh +++ b/src/base/statistics.hh @@ -1327,8 +1327,6 @@ class DistStor Counter max_track; /** The number of entries in each bucket. */ Counter bucket_size; - /** The number of buckets. Equal to (max-min)/bucket_size. */ - size_type buckets; /** The smallest value sampled. */ Counter min_val; |