mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +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:
parent
84cf638450
commit
5b0323771a
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user