summaryrefslogtreecommitdiff
path: root/src/mem/slicc/symbols/Var.py
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2015-09-14 10:04:55 -0500
committerNilay Vaish <nilay@cs.wisc.edu>2015-09-14 10:04:55 -0500
commit4e898be76299f72605fd1624f04917edb2bba3c4 (patch)
tree15d8351f9ae0ebd0756cf9fefd079b0d71cd681b /src/mem/slicc/symbols/Var.py
parent78bf2dfeac083f5f945ce61cf8ec32374e7c94ae (diff)
downloadgem5-4e898be76299f72605fd1624f04917edb2bba3c4.tar.xz
ruby: slicc: remove member buffer_expr from Var class
This was added by changeset 51f40b101a56. Instead, buffer_expr would now be associated with the InPort class.
Diffstat (limited to 'src/mem/slicc/symbols/Var.py')
-rw-r--r--src/mem/slicc/symbols/Var.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mem/slicc/symbols/Var.py b/src/mem/slicc/symbols/Var.py
index 85b9e67cd..2a4ef23db 100644
--- a/src/mem/slicc/symbols/Var.py
+++ b/src/mem/slicc/symbols/Var.py
@@ -29,10 +29,9 @@ from slicc.symbols.Symbol import Symbol
class Var(Symbol):
def __init__(self, symtab, ident, location, type, code, pairs,
- machine=None, buffer_expr=""):
+ machine=None):
super(Var, self).__init__(symtab, ident, location, pairs)
- self.buffer_expr = buffer_expr
self.machine = machine
self.type = type
self.code = code