diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-02-10 21:43:10 -0600 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-02-10 21:43:10 -0600 |
commit | 253e8edf13c4d7bee6bd13f84fdfa6cf40a0c5c3 (patch) | |
tree | de95d79e40d3e755ccc9919607175fcf41bf56f5 /src/mem/ruby/common | |
parent | f6e3ab7bd4d6c27fd400c718bfe225b09a3b486b (diff) | |
download | gem5-253e8edf13c4d7bee6bd13f84fdfa6cf40a0c5c3.tar.xz |
ruby: replace Time with Cycles (final patch in the series)
This patch is as of now the final patch in the series of patches that replace
Time with Cycles.This patch further replaces Time with Cycles in Sequencer,
Profiler, different protocols and related entities.
Though Time has not been completely removed, the places where it is in use
seem benign as of now.
Diffstat (limited to 'src/mem/ruby/common')
-rw-r--r-- | src/mem/ruby/common/TypeDefines.hh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mem/ruby/common/TypeDefines.hh b/src/mem/ruby/common/TypeDefines.hh index b031a62d3..af1a6ca4c 100644 --- a/src/mem/ruby/common/TypeDefines.hh +++ b/src/mem/ruby/common/TypeDefines.hh @@ -31,7 +31,6 @@ #define TYPEDEFINES_H typedef unsigned long long uint64; - typedef long long int64; typedef int64 Time; |