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
ff78e5e4
Commit
ff78e5e4
authored
Jul 09, 2015
by
John van Groningen
Browse files
fix name in descriptor for unboxed lists of records if exporting local labels
parent
ea420ff8
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/instructions.c
View file @
ff78e5e4
...
...
@@ -2979,7 +2979,7 @@ void GenUnboxedConsRecordDescriptor (SymbDef sdef,int tail_strict)
DetermineSizeOfState
(
tuple_state
,
&
asize
,
&
bsize
);
if
(
ExportLocalLabels
)
FPrintF
(
OutFile
,
tail_strict
?
" %d %d
\"
_Cons#!%s
\"
"
:
" %d %d
\"
_Cons#
\"
"
,
asize
,
bsize
,
name
);
FPrintF
(
OutFile
,
tail_strict
?
" %d %d
\"
_Cons#!%s
\"
"
:
" %d %d
\"
_Cons#
%s
\"
"
,
asize
,
bsize
,
name
);
else
FPrintF
(
OutFile
,
tail_strict
?
" %d %d
\"
[#%s!]
\"
"
:
" %d %d
\"
[#%s]
\"
"
,
asize
,
bsize
,
name
);
}
...
...
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