[multiple changes]
authorArnaud Charlet <charlet@gcc.gnu.org>
Mon, 17 Aug 2009 09:52:27 +0000 (11:52 +0200)
committerArnaud Charlet <charlet@gcc.gnu.org>
Mon, 17 Aug 2009 09:52:27 +0000 (11:52 +0200)
2009-08-17  Thomas Quinot  <quinot@adacore.com>

* tbuild.adb: Minor reformatting

2009-08-17  Hristian Kirtchev  <kirtchev@adacore.com>

* sysdep.c (__gnat_localtime_tzoff): Complete previous change.

From-SVN: r150830

gcc/ada/ChangeLog
gcc/ada/sysdep.c
gcc/ada/tbuild.adb

index a8cc86b4770b6b42840bfcf0f3bd3dce90ad0ebd..963d30719d325361dfe7c11c5e45b8a9fc29e6b1 100644 (file)
@@ -1,3 +1,12 @@
+2009-08-17  Arnaud Charlet  <charlet@adacore.com>
+
+       * make.adb (Process_Multilib, Scan_Make_Arg): Refine previous change
+       and ignore -mieee switch to avoid spawning an extra gcc in this case.
+
+2009-08-17  Thomas Quinot  <quinot@adacore.com>
+
+       * tbuild.adb: Minor reformatting
+
 2009-08-17  Ed Schonberg  <schonberg@adacore.com>
 
        * exp_ch3.adb (Build_Discriminant_Formals): If the discriminals already
index 6019fd9cf91a8617bc49b50e667e65944ed52e59..608246e25304373dc93c360a0a010784d2e3ed49 100644 (file)
@@ -913,7 +913,7 @@ __gnat_localtime_tzoff (const time_t *timer, long *off)
     /* Correct the offset if Daylight Saving Time is in effect */
 
     if (tp.tm_isdst > 0)
-      *off = *off - 3600;
+      *off = *off + 3600;
   }
 
   (*Unlock_Task) ();
index 7273fde67036430cc3a98a3a2b417276a3ddbb3f..52f6fbf17a184b457afdce3cddbbaa3066abf7ba 100644 (file)
@@ -446,8 +446,7 @@ package body Tbuild is
       Related_Node : Node_Id := Empty) return Node_Id
    is
       Temp : constant Node_Id :=
-               Make_Defining_Identifier (Loc,
-                 Chars => New_Internal_Name (Id));
+               Make_Defining_Identifier (Loc, Chars => New_Internal_Name (Id));
    begin
       Set_Related_Expression (Temp, Related_Node);
       return Temp;