Skip to content
GitLab
Menu
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
d7912106
Commit
d7912106
authored
May 01, 2001
by
Ronny Wichers Schreur
🏘
Browse files
removed RWS in internal compiler error message
test for NULL params in GenParameters (reason unknown)
parent
99eec421
Changes
1
Show whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/instructions.c
View file @
d7912106
...
...
@@ -1292,7 +1292,7 @@ void CallArrayFunction (SymbDef array_def,Bool is_jsr,StateP node_state_p)
function_state_p
=
array_def
->
sdef_rule
->
rule_state_p
;
break
;
default:
error_in_function
(
"CallArrayFunction
RWS
"
);
error_in_function
(
"CallArrayFunction"
);
break
;
}
/* RWS */
...
...
@@ -3285,6 +3285,11 @@ void GenParameters (Bool input, Parameters params, int asp, int bsp)
{
int
is_first_parameter
;
/* RWS ... ??? */
if
(
params
==
NULL
)
return
;
/* ... RWS */
if
(
input
)
put_instruction_
(
Iin
);
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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