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
3d61cca5
Commit
3d61cca5
authored
Apr 05, 2016
by
John van Groningen
Browse files
use {}'s instead of ()'s in element type string for unboxed records
parent
6a7657a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
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