ruby: remove call to curCycle in panic()
authorNilay Vaish <nilay@cs.wisc.edu>
Mon, 28 Jan 2013 12:11:42 +0000 (06:11 -0600)
committerNilay Vaish <nilay@cs.wisc.edu>
Mon, 28 Jan 2013 12:11:42 +0000 (06:11 -0600)
The panic() function already prints the current tick value. This call to
curCycle() is as such redundant. Since we are trying to move towards multiple
clock domains, this call will print misleading time.

src/mem/slicc/ast/AST.py

index 6eaa452cc8981a858f484a30d650143f489970d1..0db4a52c3b4fef3dc32f727396b36faac3dff11e 100644 (file)
@@ -54,7 +54,6 @@ class AST(PairContainer):
             message = message % args
         code = self.slicc.codeFormatter()
         code('''
-panic("Runtime Error at ${{self.location}}, Ruby Time: %d, %s.\\n",
-    curCycle(), $message);
+panic("Runtime Error at ${{self.location}}: %s.\\n", $message);
 ''')
         return code