summaryrefslogtreecommitdiff
path: root/src/mem/slicc/ast/InPortDeclAST.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/slicc/ast/InPortDeclAST.py')
-rw-r--r--src/mem/slicc/ast/InPortDeclAST.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/mem/slicc/ast/InPortDeclAST.py b/src/mem/slicc/ast/InPortDeclAST.py
index 376315eed..c88d353d3 100644
--- a/src/mem/slicc/ast/InPortDeclAST.py
+++ b/src/mem/slicc/ast/InPortDeclAST.py
@@ -109,23 +109,6 @@ class InPortDeclAST(DeclAST):
param_types.append(type)
- # Add the doubleTrigger method - this hack supports tiggering
- # two simulateous events
- #
- # The key is that the second transistion cannot fail because
- # the first event cannot be undone therefore you must do some
- # checks before calling double trigger to ensure that won't
- # happen
- func = Func(self.symtab, "doubleTrigger", self.location, void_type,
- param_types, [], "", pairs)
- symtab.newSymbol(func)
-
- # Add the continueProcessing method - this hack supports
- # messages that don't trigger events
- func = Func(self.symtab, "continueProcessing", self.location,
- void_type, [], [], "", pairs)
- symtab.newSymbol(func)
-
if self.statements is not None:
rcode = self.slicc.codeFormatter()
rcode.indent()