1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-12 12:29:32 +00:00

Add some code that avoids outputing a forward label in the same line as a

normal label. It works but looks bad.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3971 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-07-06 20:33:06 +00:00
parent 84cf638450
commit 5b0323771a

View File

@ -183,6 +183,12 @@ void DefForward (const char* Name, const char* Comment, unsigned Offs)
*/
{
if (Pass == PassCount) {
/* Flush existing output if necessary */
if (Col > 1) {
LineFeed ();
}
/* Output the forward definition */
Output ("%s", Name);
Indent (ACol);
if (UseHexOffs) {