Kaynağa Gözat

Dump Essential instead of Referenced.

git-svn-id: file:///var/svn/tigccpp/trunk/tigcc/ld-tigcc@151 9552661e-59e3-4036-b4f2-dbe53926924f
kevinkofler 19 yıl önce
ebeveyn
işleme
6b6d19904a
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. 3 3
      dump.c

+ 3 - 3
dump.c

@@ -1,7 +1,7 @@
 /* dump.c: Routines to dump the internal data to a file
 
    Copyright (C) 2002-2004 Sebastian Reichelt
-   Copyright (C) 2003-2004 Kevin Kofler
+   Copyright (C) 2003-2005 Kevin Kofler
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -80,8 +80,8 @@ void DumpSection (FILE *File, const char *Indent, const SECTION *Section)
 		fprintf (File, "%sFile: %s\n", Indent, Section->FileName);
 	if (Section->StartupNumber)
 		fprintf (File, "%sStartup Section: %ld\n", Indent, (long) (Section->StartupNumber));
-	if (!(Section->Referenced))
-		fprintf (File, "%sNot Referenced\n", Indent);
+	if (Section->Essential)
+		fprintf (File, "%sEssential\n", Indent);
 	if (Section->Frozen)
 		fprintf (File, "%sFrozen\n", Indent);
 	if (Section->CanCutRanges)