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
63ddd628
Commit
63ddd628
authored
Sep 17, 2015
by
John van Groningen
Browse files
fix name in descriptor for unboxed lists of records if exporting local labels (again)
parent
4f46345b
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/instructions.c
View file @
63ddd628
...
...
@@ -3143,7 +3143,7 @@ void GenUnboxedConsRecordDescriptor (SymbDef sdef,int tail_strict)
FPrintF
(
OutFile
,
"e_%s_"
R_PREFIX
"%s "
,
sdef
->
sdef_module
,
name
);
if
(
ExportLocalLabels
)
FPrintF
(
OutFile
,
tail_strict
?
"
\"
_Cons#!%s
\"
"
:
"
\"
_Cons#
\"
"
,
name
);
FPrintF
(
OutFile
,
tail_strict
?
"
\"
_Cons#!%s
\"
"
:
"
\"
_Cons#
%s
\"
"
,
name
);
else
FPrintF
(
OutFile
,
tail_strict
?
"
\"
[#%s!]
\"
"
:
"
\"
[#%s]
\"
"
,
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