diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-07-13 15:14:39 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-07-13 15:14:39 +0200 |
commit | a7209434bdc1561d3adf2bc2c848c3b6ba74f19d (patch) | |
tree | f2a2edbfc29f3d780ec17e9ab899485ddfa14e1c /gcc/ada/output.adb | |
parent | ef76538fbbe91be4c00dd874750e924845d9b289 (diff) | |
download | gcc-a7209434bdc1561d3adf2bc2c848c3b6ba74f19d.zip gcc-a7209434bdc1561d3adf2bc2c848c3b6ba74f19d.tar.gz gcc-a7209434bdc1561d3adf2bc2c848c3b6ba74f19d.tar.bz2 |
[multiple changes]
2009-07-13 Robert Dewar <dewar@adacore.com>
* output.adb: Minor comment addition for last change
* sinfo.ads: Minor reformatting
2009-07-13 Vasiliy Fofanov <fofanov@adacore.com>
* adaint.c (__gnat_portable_no_block_spawn): on Windows, return -1 when
spawn failed like on all other targets.
2009-07-13 Ed Schonberg <schonberg@adacore.com>
* exp_ch7.adb: Indicate origin of temporary for transient expression.
From-SVN: r149584
Diffstat (limited to 'gcc/ada/output.adb')
-rw-r--r-- | gcc/ada/output.adb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ada/output.adb b/gcc/ada/output.adb index d675dec..bb5f5ae 100644 --- a/gcc/ada/output.adb +++ b/gcc/ada/output.adb @@ -29,6 +29,10 @@ -- -- ------------------------------------------------------------------------------ +-- Note: the pragma Warnings (Off) here is because ASIS compiles this unit +-- without -gnatg, and System.OS_Lib is an implementation unit. This is a +-- temporary kludge which will be better resolved later on ??? + pragma Warnings (Off); with System.OS_Lib; use System.OS_Lib; pragma Warnings (On); |