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
396d1331
Commit
396d1331
authored
Nov 03, 2006
by
John van Groningen
Browse files
fix printing of _ label in .n directive for lazy record field selectors
parent
61e995fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/instructions.c
View file @
396d1331
...
...
@@ -2757,9 +2757,12 @@ void GenFieldNodeEntryDirective (int arity,Label label,Label label2,char *record
else
FPutS
(
empty_lab
.
lab_name
,
OutFile
);
if
(
label2
){
if
(
label2
!=
NULL
){
FPutC
(
' '
,
OutFile
);
GenFieldLabel
(
label2
,
record_name
);
if
(
label2
==&
empty_lab
)
FPutS
(
empty_lab
.
lab_name
,
OutFile
);
else
GenFieldLabel
(
label2
,
record_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