diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-18 13:50:26 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-18 13:50:26 +0000 |
commit | d5dc11f24cee7f0d68daedaa79fe55e407cd2d19 (patch) | |
tree | 2b138ed12345e85367c8b9dcf120c6b734dbf81e /gcc/ada/osint-c.adb | |
parent | d2cf6f2ed6c0439478a7deb0372395171d18e26f (diff) | |
download | gcc-d5dc11f24cee7f0d68daedaa79fe55e407cd2d19.tar.gz |
2009-09-18 Thomas Quinot <quinot@adacore.com>
* g-socket.adb (Is_Open): New function indicating whether a
Selector_Type object is open.
2009-09-18 Vincent Celier <celier@adacore.com>
* osint-c.adb (Create_Output_Library_Info): Make sure that the ALI file
is deleted before creating it.
2009-09-18 Robert Dewar <dewar@adacore.com>
* bindgen.adb: Minor reformatting
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151842 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/osint-c.adb')
-rw-r--r-- | gcc/ada/osint-c.adb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/osint-c.adb b/gcc/ada/osint-c.adb index a93573e7754..8b67befc6c6 100644 --- a/gcc/ada/osint-c.adb +++ b/gcc/ada/osint-c.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2001-2008, Free Software Foundation, Inc. -- +-- Copyright (C) 2001-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -202,8 +202,12 @@ package body Osint.C is -------------------------------- procedure Create_Output_Library_Info is + Dummy : Boolean; + pragma Unreferenced (Dummy); + begin Set_Library_Info_Name; + Delete_File (Name_Buffer (1 .. Name_Len), Dummy); Create_File_And_Check (Output_FD, Text); end Create_Output_Library_Info; |