diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2014-09-01 16:55:43 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2014-09-01 16:55:43 -0500 |
commit | 557200725ccf98b50d9fd288e1eb0c5ffc7875ea (patch) | |
tree | e9b4a7de833120e79b1b149707a0647eb9641a85 /src/mem/protocol | |
parent | 6ceb1aadc2d64576c4506657da6b3ba1b7a2d4ea (diff) | |
download | gem5-557200725ccf98b50d9fd288e1eb0c5ffc7875ea.tar.xz |
ruby: slicc: donot prefix machine name to variables
This changeset does away with prefixing of member variables of state machines
with the identity of the machine itself.
Diffstat (limited to 'src/mem/protocol')
-rw-r--r-- | src/mem/protocol/MOESI_CMP_token-L1cache.sm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/protocol/MOESI_CMP_token-L1cache.sm b/src/mem/protocol/MOESI_CMP_token-L1cache.sm index 2b15dc8bf..238689efa 100644 --- a/src/mem/protocol/MOESI_CMP_token-L1cache.sm +++ b/src/mem/protocol/MOESI_CMP_token-L1cache.sm @@ -201,7 +201,7 @@ machine(L1Cache, "Token protocol") // Constant that provides hysteresis for calculated the estimated average int averageLatencyHysteresis, default="(8)"; Cycles averageLatencyCounter, - default="(Cycles(500) << (*m_L1Cache_averageLatencyHysteresis_ptr))"; + default="(Cycles(500) << (*m_averageLatencyHysteresis_ptr))"; Cycles averageLatencyEstimate() { DPRINTF(RubySlicc, "%d\n", |