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
1736bdb1
Commit
1736bdb1
authored
Aug 18, 2015
by
John van Groningen
Browse files
fix previous version, add return before next case in switch instruction
parent
7ecb7c57
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/instructions.c
View file @
1736bdb1
...
...
@@ -1148,11 +1148,12 @@ static void GenABStackElemsForRecordDesc (StateS state)
}
}
FPutC
(
')'
,
OutFile
);
return
;
case
RecordState
:
argstates
=
state
.
state_record_arguments
;
FPutC
(
'('
,
OutFile
);
for
(
arity
=
0
;
arity
<
state
.
state_arity
;
++
arity
)
GenABStackElems
(
argstates
[
arity
]);
GenABStackElems
ForRecordDesc
(
argstates
[
arity
]);
FPutC
(
')'
,
OutFile
);
return
;
case
ArrayState
:
...
...
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