diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-30 17:15:32 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-30 17:15:32 +0200 |
commit | 1ebc2612da88cbb87faed5106329fd03831e0ebc (patch) | |
tree | 0656ba3aee338b7a7fcddd8348d9174e207cf1ad /gcc/ada/get_targ.adb | |
parent | 45ec05e18a67b030cfc64802c9261b7ba2e7d34c (diff) | |
download | gcc-1ebc2612da88cbb87faed5106329fd03831e0ebc.zip gcc-1ebc2612da88cbb87faed5106329fd03831e0ebc.tar.gz gcc-1ebc2612da88cbb87faed5106329fd03831e0ebc.tar.bz2 |
[multiple changes]
2014-07-30 Arnaud Charlet <charlet@adacore.com>
* set_targ.adb (Read_Target_Dependent_Values): New subprogram.
(elab body): Add provision for default target config file.
* get_targ.ads, get_targ.adb (Get_Back_End_Config_File): New subprogram.
2014-07-30 Ed Schonberg <schonberg@adacore.com>
* a-cbhase.adb (Delete): Raise Constraint_Error, not Program_Error,
when attempting to remove an element not in the set. This is
the given semantics for all set containers.
* a-cborse.adb (Delete): Attempt removal first, to check for
tampering, before checking whether this is an attempt to
delete a non-existing element, and in fthe latter case raise
Constraint_Error.
2014-07-30 Vincent Celier <celier@adacore.com>
* prj-proc.adb (Recursive_Process): Do not create a new
Project_Id if the project is already in the list of projects of
the tree.
2014-07-30 Ed Schonberg <schonberg@adacore.com>
* sem_ch6.adb (Analyze_Function_Return): Reject a return expression
whose type is an incomplete formal type.
(Analyze_Return_Type): Reject a return type that is an untagged
imcomplete formal type.
(Process_Formals): Reject a formal parameter whose type is an
untagged formal incomplete type.
* sem_res.adb (Resolve_Actuals): Reject an actual whose type is
an untagged formal incomplete type.
From-SVN: r213299
Diffstat (limited to 'gcc/ada/get_targ.adb')
-rw-r--r-- | gcc/ada/get_targ.adb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/ada/get_targ.adb b/gcc/ada/get_targ.adb index 661f95b..fa0c8b9 100644 --- a/gcc/ada/get_targ.adb +++ b/gcc/ada/get_targ.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2013, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2014, 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- -- @@ -293,6 +293,15 @@ package body Get_Targ is return C_Get_Double_Scalar_Alignment; end Get_Double_Scalar_Alignment; + ------------------------------ + -- Get_Back_End_Config_File -- + ------------------------------ + + function Get_Back_End_Config_File return String_Ptr is + begin + return null; + end Get_Back_End_Config_File; + ---------------------- -- Digits_From_Size -- ---------------------- |