diff options
author | ronny | 2001-06-15 15:57:02 +0000 |
---|---|---|
committer | ronny | 2001-06-15 15:57:02 +0000 |
commit | 0e1d33c8e5c9ee8e29c7cb49caa2346251c7bb62 (patch) | |
tree | 2978559ca647c99ba6f03e7fa105c1babcc2d093 /backendC | |
parent | print local reference counts to file instead of stdout (diff) |
removed comments
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@487 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backendC')
-rw-r--r-- | backendC/CleanCompilerSources/backend.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/backendC/CleanCompilerSources/backend.c b/backendC/CleanCompilerSources/backend.c index 7dd78eb..74d36a0 100644 --- a/backendC/CleanCompilerSources/backend.c +++ b/backendC/CleanCompilerSources/backend.c @@ -1381,8 +1381,6 @@ BESwitchNode (BENodeIdP nodeId, BEArgP cases) switchNode->node_arity = 1; switchNode->node_arguments = cases; switchNode->node_annotation = NoAnnot; - -// --nodeId->nid_refcount; return (switchNode); } /* BESwitchNode */ @@ -1439,8 +1437,7 @@ BEPushNode (int arity, BESymbolP symbol, BEArgP arguments, BENodeIdListP nodeIds pushNode->node_arguments = arguments; pushNode->node_record_symbol= symbol; pushNode->node_node_ids = nodeIds; - - pushNode->node_number = 0; /* ??? if !=0 then unique */ + pushNode->node_number = 0; return (pushNode); } /* BEPushNode */ |