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
56b0b5ae
Commit
56b0b5ae
authored
Apr 29, 2004
by
Ronny Wichers Schreur
🏢
Browse files
bug fix: always print ';' in function descriptor names
parent
fc72132f
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/checksupport.c
View file @
56b0b5ae
...
...
@@ -382,7 +382,7 @@ void PrintSymbolOfIdent (Ident sid, unsigned line_nr, File file)
next_char
=
PrintName
(
name
,
next_char
,
line_nr
,
file
);
if
((
*
next_char
)
==
cTypeDelimiter
&&
next_char
[
1
]
!=
'\0'
)
if
((
*
next_char
)
==
cTypeDelimiter
)
{
next_char
++
;
if
(
isdigit
(
*
next_char
))
...
...
@@ -405,7 +405,8 @@ void PrintSymbolOfIdent (Ident sid, unsigned line_nr, File file)
}
next_char
=
end_name
+
1
;
}
}
else
FPutC
(
cTypeDelimiter
,
file
);
FPutS
(
next_char
,
file
);
}
...
...
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