diff options
author | Nathan Binkert <nate@binkert.org> | 2010-03-12 18:42:56 -0800 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2010-03-12 18:42:56 -0800 |
commit | 0bbf63f17a636ffbfcfae4ea20fc306c145bc3a3 (patch) | |
tree | 0ee50c6840a06894ce39b2b863f775058b80e2d2 /src/mem/slicc/ast/AST.py | |
parent | c8f296bca08a34947cf020046964a888b66acbb5 (diff) | |
download | gem5-0bbf63f17a636ffbfcfae4ea20fc306c145bc3a3.tar.xz |
slicc: Change the code generation so that the generated code is easier to read
Diffstat (limited to 'src/mem/slicc/ast/AST.py')
-rw-r--r-- | src/mem/slicc/ast/AST.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mem/slicc/ast/AST.py b/src/mem/slicc/ast/AST.py index 5818448ca..8f0d06171 100644 --- a/src/mem/slicc/ast/AST.py +++ b/src/mem/slicc/ast/AST.py @@ -54,8 +54,14 @@ class AST(PairContainer): message = message % args code = self.slicc.codeFormatter() code(''' -cerr << "Runtime Error at ${{self.location}}, Ruby Time: " << g_eventQueue_ptr->getTime() << ": "<< $message << ", PID: " << getpid() << endl; -char c; cerr << "press return to continue." << endl; cin.get(c); abort(); +char c; +cerr << "Runtime Error at ${{self.location}}, Ruby Time: " + << g_eventQueue_ptr->getTime() << ": " + << $message + << ", PID: " << getpid() << endl + << "press return to continue." << endl; +cin.get(c); +abort(); ''') return code |