]> git.sur5r.net Git - cc65/commitdiff
Fix relocation of line infos.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 5 Aug 2010 19:34:03 +0000 (19:34 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 5 Aug 2010 19:34:03 +0000 (19:34 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4781 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/lineinfo.c

index 2cc4d86ac2a4754289e07bc3edbd4737a6591d2b..2b5eba78f04a62fba4b643f52c1bda5ae50e9d2f 100644 (file)
@@ -152,7 +152,7 @@ static void AddCodeRange (LineInfo* LI, unsigned long Offs, unsigned long Size)
 void RelocLineInfo (Segment* S)
 /* Relocate the line info for a segment. */
 {
-    unsigned long Offs = 0;
+    unsigned long Offs = S->PC;
 
     /* Loop over all sections in this segment */
     Section* Sec = S->SecRoot;