Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
compiler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
17
Issues
17
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
clean-compiler-and-rts
compiler
Commits
1736bdb1
Commit
1736bdb1
authored
Aug 18, 2015
by
John van Groningen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix previous version, add return before next case in switch instruction
parent
7ecb7c57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
backendC/CleanCompilerSources/instructions.c
backendC/CleanCompilerSources/instructions.c
+2
-1
No files found.
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
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