Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
clean-compiler-and-rts
compiler
Commits
f00e9c07
Commit
f00e9c07
authored
Jun 11, 2001
by
John van Groningen
Browse files
handle GuardNode's
parent
2cf31dcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/set_scope_numbers.c
View file @
f00e9c07
...
...
@@ -83,6 +83,11 @@ static void set_root_scope_numbers (NodeP node_p,int local_scope)
}
}
break
;
case
GuardNode
:
set_root_scope_numbers
(
node_p
->
node_arguments
->
arg_node
,
local_scope
);
set_root_scope_numbers
(
node_p
->
node_arguments
->
arg_next
->
arg_node
,
local_scope
);
set_node_id_scope_numbers
(
node_p
->
node_node_defs
,
local_scope
);
break
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment