Commit 1def9494 by Arnaud Charlet

[multiple changes]

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
parent 579fab00
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
......
......@@ -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) ();
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment