diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-22 17:14:51 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-22 17:14:51 +0200 |
commit | a52fefe6abf2bee1322d26f926541ed99d480617 (patch) | |
tree | daadee6c2ff3321a7be6567a2a82328b0af1604c /gcc/ada/tempdir.adb | |
parent | 2f1e0b61936bee94c65d1c935e2f43a8d46cf9da (diff) | |
download | gcc-a52fefe6abf2bee1322d26f926541ed99d480617.zip gcc-a52fefe6abf2bee1322d26f926541ed99d480617.tar.gz gcc-a52fefe6abf2bee1322d26f926541ed99d480617.tar.bz2 |
[multiple changes]
2009-04-22 Ed Schonberg <schonberg@adacore.com>
* sem_res.adb: Create block around procedure call when actual is a
concatenation.
2009-04-22 Thomas Quinot <quinot@adacore.com>
* s-soflin.ads: Fix typos
2009-04-22 Vincent Celier <celier@adacore.com>
* prj-env.adb: Minor comment change
* prj-nmsc.adb (Check_Common): Add guard to avoid calling
Get_Name_String with No_File.
* tempdir.adb (Create_Temp_File): Output diagnostic when temp file
cannot be created even when not in verbose mode.
From-SVN: r146587
Diffstat (limited to 'gcc/ada/tempdir.adb')
-rw-r--r-- | gcc/ada/tempdir.adb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/ada/tempdir.adb b/gcc/ada/tempdir.adb index 1612140..b443307 100644 --- a/gcc/ada/tempdir.adb +++ b/gcc/ada/tempdir.adb @@ -94,10 +94,7 @@ package body Tempdir is end if; if FD = Invalid_FD then - if Verbose_Mode then - Write_Line ("could not create temporary file in " & Directory); - end if; - + Write_Line ("could not create temporary file in " & Directory); Name := No_Path; else |