base: Correct a small typo in sim/core.(hh|cc).
authorGabe Black <gabeblack@google.com>
Tue, 11 Sep 2018 07:57:34 +0000 (00:57 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 11 Sep 2018 21:39:13 +0000 (21:39 +0000)
The value GHz with a small z was spelled GHZ with a large z, which was
inconsistent with the other frequency-like values in that namespace.

Change-Id: I55dfc447a5811ae584e46769cd9cadd08bd1e716
Reviewed-on: https://gem5-review.googlesource.com/12572
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>

src/sim/core.cc
src/sim/core.hh

index 00df23ed6709a5b99ab12bfa94523e539b62a64a..514c4c557d92424229ff3f2dc2abb9590ffac17a 100644 (file)
@@ -56,7 +56,7 @@ double ps;
 double Hz;
 double kHz;
 double MHz;
-double GHZ;
+double GHz;
 } // namespace Float
 
 namespace Int {
@@ -83,7 +83,7 @@ setClockFrequency(Tick ticksPerSecond)
     Float::Hz  = 1.0 / Float::s;
     Float::kHz = 1.0 / Float::ms;
     Float::MHz = 1.0 / Float::us;
-    Float::GHZ = 1.0 / Float::ns;
+    Float::GHz = 1.0 / Float::ns;
 
     Int::s  = Frequency;
     Int::ms = Int::s / 1000;
index e0a6af91cc3ef31f78ce55cc83d450d353742fce..281fe61f541b39eac08d6ec7b0af1e6baf0fdc91 100644 (file)
@@ -72,7 +72,7 @@ extern double ps; ///< picosecond
 extern double Hz;  ///< Hz
 extern double kHz; ///< kHz
 extern double MHz; ///< MHz
-extern double GHZ; ///< GHz
+extern double GHz; ///< GHz
 /** @}*/
 } // namespace Float