diff options
author | Nathan Binkert <nate@binkert.org> | 2010-09-09 14:15:41 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2010-09-09 14:15:41 -0700 |
commit | c514ad9b097ef73b14abbf4f5af3617c54dbb154 (patch) | |
tree | 6bf06e38238e9b3367cb21db4288047792c8c52d /src/mem/slicc | |
parent | 18ef1bcfa23a4e582e37cb9e806b06e9a6c13b53 (diff) | |
download | gem5-c514ad9b097ef73b14abbf4f5af3617c54dbb154.tar.xz |
code_formatter: make it easier to insert whitespace
a newline by just doing "code()". indent() and dedent() now take a
"count" parameter to indent/dedent multiple levels.
Diffstat (limited to 'src/mem/slicc')
-rw-r--r-- | src/mem/slicc/symbols/StateMachine.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/slicc/symbols/StateMachine.py b/src/mem/slicc/symbols/StateMachine.py index e57275527..c1926fbab 100644 --- a/src/mem/slicc/symbols/StateMachine.py +++ b/src/mem/slicc/symbols/StateMachine.py @@ -559,17 +559,17 @@ $vid->setDescription("[Version " + to_string(m_version) + ", ${ident}, name=${{v # Set the queue consumers - code.insert_newline() + code() for port in self.in_ports: code('${{port.code}}.setConsumer(this);') # Set the queue descriptions - code.insert_newline() + code() for port in self.in_ports: code('${{port.code}}.setDescription("[Version " + to_string(m_version) + ", $ident, $port]");') # Initialize the transition profiling - code.insert_newline() + code() for trans in self.transitions: # Figure out if we stall stall = False |