Browse Source

ld-tigcc: move a routine around so that link.dll can be compiled.
My bad for the bug, Kevin's bad for not finding it either and not automating build process, which would have caught the mistake.

git-svn-id: file:///var/svn/tigccpp/trunk/tigcc/ld-tigcc@1302 9552661e-59e3-4036-b4f2-dbe53926924f

debrouxl 15 years ago
parent
commit
80bc27bee6
1 changed files with 32 additions and 32 deletions
  1. 32 32
      main.c

+ 32 - 32
main.c

@@ -56,6 +56,38 @@ EXP_GET_INTERFACE_VERSION ()
 }
 #endif /* TARGET_DLL */
 
+// Fill internal structures with time information
+static void ComputeTimeInformation(PROGRAM *Program)
+{
+	// Get the timestamp.
+	if (time (&Program->LinkTime.LinkTime) != (time_t) -1)
+	{
+		struct tm *broken_down_time = gmtime (&Program->LinkTime.LinkTime);
+		if (broken_down_time)
+		{
+			// gmtime returns the number of years since 1900.
+			Program->LinkTime.Year = broken_down_time->tm_year + 1900;
+			// gmtime returns the month between 0 and 11.
+			Program->LinkTime.Month = broken_down_time->tm_mon + 1;
+			Program->LinkTime.Day = broken_down_time->tm_mday;
+			// Convert from "seconds since Jan 1, 1970" to "seconds since Jan 1, 1997".
+			// 197x: 8x365 days, 2x366 days (leap years: 1972, 1976) => 315532800 seconds
+			// 198x: 7x365 days, 3x366 days (leap years: 1980, 1984, 1988) => 315619200 seconds
+			// 199x: 5x365 days, 2x366 days (leap years: 1992, 1996) => 220924800 seconds
+			// Total: 852076800 seconds.
+			Program->LinkTime.LinkTime -= (time_t) 852076800L;
+			return;
+		}
+	}
+
+	// Failed, so set dummy values.
+	Warning (NULL, "Could not get current time, setting dummy values.");
+	Program->LinkTime.LinkTime = (time_t) 0,
+	Program->LinkTime.Year = 1997,
+	Program->LinkTime.Month = 1,
+	Program->LinkTime.Day = 1;
+}
+
 // Main entry point.
 #ifdef TARGET_EMBEDDED
 ERROR_FUNCTION ErrorFunction;
@@ -123,38 +155,6 @@ static char CalcTolower(char Lower)
 	return c;
 }
 
-// Fill internal structures with time information
-static void ComputeTimeInformation(PROGRAM *Program)
-{
-	// Get the timestamp.
-	if (time (&Program->LinkTime.LinkTime) != (time_t) -1)
-	{
-		struct tm *broken_down_time = gmtime (&Program->LinkTime.LinkTime);
-		if (broken_down_time)
-		{
-			// gmtime returns the number of years since 1900.
-			Program->LinkTime.Year = broken_down_time->tm_year + 1900;
-			// gmtime returns the month between 0 and 11.
-			Program->LinkTime.Month = broken_down_time->tm_mon + 1;
-			Program->LinkTime.Day = broken_down_time->tm_mday;
-			// Convert from "seconds since Jan 1, 1970" to "seconds since Jan 1, 1997".
-			// 197x: 8x365 days, 2x366 days (leap years: 1972, 1976) => 315532800 seconds
-			// 198x: 7x365 days, 3x366 days (leap years: 1980, 1984, 1988) => 315619200 seconds
-			// 199x: 5x365 days, 2x366 days (leap years: 1992, 1996) => 220924800 seconds
-			// Total: 852076800 seconds.
-			Program->LinkTime.LinkTime -= (time_t) 852076800L;
-			return;
-		}
-	}
-
-	// Failed, so set dummy values.
-	Warning (NULL, "Could not get current time, setting dummy values.");
-	Program->LinkTime.LinkTime = (time_t) 0,
-	Program->LinkTime.Year = 1997,
-	Program->LinkTime.Month = 1,
-	Program->LinkTime.Day = 1;
-}
-
 int main (int ArgCount, const char **Args)
 {
 	OPTIMIZE_INFO _OptimizeInfo;