]> git.sur5r.net Git - cc65/commitdiff
Use "[linker generated]" as source for linker generated symbols.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 23 Nov 2000 19:14:15 +0000 (19:14 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 23 Nov 2000 19:14:15 +0000 (19:14 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@478 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/objdata.c
src/ld65/objdata.h
src/ld65/segments.c

index 085468da96519673480dd374411689a369b7ff50..ce88775dc74b30a4b8ae33066e1da22882a9d964 100644 (file)
@@ -115,35 +115,35 @@ void FreeObjData (ObjData* O)
 
 
 const char* GetObjFileName (const ObjData* O)
-/* Get the name of the object file. Return "(linker generated)" if the object
+/* Get the name of the object file. Return "[linker generated]" if the object
  * file is NULL.
  */
 {
-    return O? O->Name : "(linker generated)";
+    return O? O->Name : "[linker generated]";
 }
 
 
 
 const char* GetSourceFileName (const ObjData* O, unsigned Index)
 /* Get the name of the source file with the given index. If O is NULL, return
- * "(linker generated)" as the file name.
+ * "[linker generated]" as the file name.
  */
-{      
+{
     /* Check if we have an object file */
     if (O == 0) {
-       
-       /* No object file */
-       return "(linker generated)";
+
+       /* No object file */
+       return "[linker generated]";
 
     } else {
-    
+
        /* Check the parameter */
        PRECONDITION (Index < O->FileCount);
-    
+
        /* Return the name */
        return O->Files[Index];
 
-    }
+    }           
 }
 
 
index 92202977fc4f8c7136a9dde9d28bfa8e07d644a5..1fa3399440660dc3638d18f1e1c24163efb1826c 100644 (file)
@@ -98,13 +98,13 @@ void FreeObjData (ObjData* O);
 /* Free a complete struct */
 
 const char* GetObjFileName (const ObjData* O);
-/* Get the name of the object file. Return "(linker generated)" if the object
+/* Get the name of the object file. Return "[linker generated]" if the object
  * file is NULL.
  */
 
 const char* GetSourceFileName (const ObjData* O, unsigned Index);
 /* Get the name of the source file with the given index. If O is NULL, return
- * "(linker generated)" as the file name.
+ * "[linker generated]" as the file name.                    
  */
 
 
index e41dcdeac7d01e6fe611e8f788dc6bae9cb49f67..aa0251c389a2329e8065c2942246fb0366fba04b 100644 (file)
@@ -153,7 +153,7 @@ Segment* GetSegment (const char* Name, unsigned char Type, const char* ObjName)
                if (S->Type != Type) {
            /* Allow an empty object name */
            if (ObjName == 0) {
-               ObjName = "(linker generated)";
+               ObjName = "[linker generated]";
            }
            Error ("Module `%s': Type mismatch for segment `%s'", ObjName, Name);
        }
@@ -505,13 +505,13 @@ void SegWrite (FILE* Tgt, Segment* S, SegWriteFunc F, void* Data)
 
                        case SEG_EXPR_RANGE_ERROR:
                            Error ("Range error in module `%s', line %lu",
-                                  GetSourceFileName (Frag->Obj, Frag->Pos.Name), 
+                                  GetSourceFileName (Frag->Obj, Frag->Pos.Name),
                                   Frag->Pos.Line);
                            break;
 
                        case SEG_EXPR_TOO_COMPLEX:
                            Error ("Expression too complex in module `%s', line %lu",
-                                  GetSourceFileName (Frag->Obj, Frag->Pos.Name), 
+                                  GetSourceFileName (Frag->Obj, Frag->Pos.Name),
                                   Frag->Pos.Line);
                            break;