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
be7392e9
Commit
be7392e9
authored
Aug 19, 2015
by
John van Groningen
Browse files
fix bug in FPrintF call
parent
1736bdb1
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/instructions.c
View file @
be7392e9
...
...
@@ -3139,9 +3139,9 @@ void GenUnboxedConsRecordDescriptor (SymbDef sdef,int tail_strict)
FPrintF
(
OutFile
,
" %d %d "
,
asize
,
bsize
);
GenUnboxedRecordLabelsReversedForRecord
(
tuple_arguments_state
[
0
]);
if
(
ExportLocalLabels
)
FPrintF
(
OutFile
,
tail_strict
?
"
\"
_Cons#!%s
\"
"
:
"
\"
_Cons#
\"
"
,
asize
,
bsize
,
name
);
FPrintF
(
OutFile
,
tail_strict
?
"
\"
_Cons#!%s
\"
"
:
"
\"
_Cons#
\"
"
,
name
);
else
FPrintF
(
OutFile
,
tail_strict
?
"
\"
[#%s!]
\"
"
:
"
\"
[#%s]
\"
"
,
asize
,
bsize
,
name
);
FPrintF
(
OutFile
,
tail_strict
?
"
\"
[#%s!]
\"
"
:
"
\"
[#%s]
\"
"
,
name
);
}
}
#endif
...
...
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