... | ... | @@ -271,7 +271,7 @@ MakeInfo () |
|
|
|
|
|
DBUG_ENTER ();
|
|
|
|
|
|
result = MEMmalloc (sizeof (info));
|
|
|
result = (info *)MEMmalloc (sizeof (info));
|
|
|
|
|
|
INFO_FOO (result) = NULL;
|
|
|
|
... | ... | @@ -308,6 +308,7 @@ TEMPdoTemplateTraversal (node *syntax_tree) |
|
|
info *info;
|
|
|
|
|
|
DBUG_ENTER ();
|
|
|
DBUG_ASSERT (NODE_TYPE (arg_node) == N_module, "called with non-module node");
|
|
|
|
|
|
info = MakeInfo ();
|
|
|
|
... | ... | @@ -329,14 +330,13 @@ TEMPdoTemplateTraversal (node *syntax_tree) |
|
|
*********************************************************/
|
|
|
|
|
|
/**
|
|
|
* @brief Traverses only the fundef chain and leaves out special thread
|
|
|
* @brief Traverses only the fundef chain
|
|
|
**/
|
|
|
node *
|
|
|
TEMPmodule (node *arg_node, info *arg_info)
|
|
|
{
|
|
|
DBUG_ENTER ();
|
|
|
|
|
|
DBUG_ASSERT (NODE_TYPE (arg_node) == N_module, "called with non-module node");
|
|
|
MODULE_FUNS (arg_node) = TRAVopt (MODULE_FUNS (arg_node), arg_info);
|
|
|
|
|
|
DBUG_RETURN (arg_node);
|
... | ... | |