Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
clean-compiler-and-rts
compiler
Commits
3d61cca5
Commit
3d61cca5
authored
Apr 05, 2016
by
John van Groningen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use {}'s instead of ()'s in element type string for unboxed records
parent
6a7657a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
backendC/CleanCompilerSources/instructions.c
backendC/CleanCompilerSources/instructions.c
+2
-2
No files found.
backendC/CleanCompilerSources/instructions.c
View file @
3d61cca5
...
...
@@ -1151,10 +1151,10 @@ static void GenABStackElemsForRecordDesc (StateS state)
return
;
case
RecordState
:
argstates
=
state
.
state_record_arguments
;
FPutC
(
'
(
'
,
OutFile
);
FPutC
(
'
{
'
,
OutFile
);
for
(
arity
=
0
;
arity
<
state
.
state_arity
;
++
arity
)
GenABStackElemsForRecordDesc
(
argstates
[
arity
]);
FPutC
(
'
)
'
,
OutFile
);
FPutC
(
'
}
'
,
OutFile
);
return
;
case
ArrayState
:
FPutC
(
'a'
,
OutFile
);
...
...
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