aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/make.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2016-05-02 11:11:03 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2016-05-02 11:11:03 +0200
commitf96fd197d26faabef756d6cb97d782919685b45e (patch)
tree3baada419f5066d0448cfe4adb129eaa98d8f006 /gcc/ada/make.adb
parent3ba1a9eb6ec22706bdb084db2f1ab31a32d4dde8 (diff)
downloadgcc-f96fd197d26faabef756d6cb97d782919685b45e.zip
gcc-f96fd197d26faabef756d6cb97d782919685b45e.tar.gz
gcc-f96fd197d26faabef756d6cb97d782919685b45e.tar.bz2
[multiple changes]
2016-05-02 Arnaud Charlet <charlet@adacore.com> * exp_ch5.adb, layout.adb, gnatcmd.adb exp_attr.adb, make.adb, bindgen.adb, debug.adb, exp_pakd.adb, freeze.adb, sem_util.adb, gnatlink.adb, switch-m.adb, exp_ch4.adb, repinfo.adb, adabkend.adb, osint.adb: Remove dead code. 2016-05-02 Yannick Moy <moy@adacore.com> * a-tigeli.adb (Get_Line): Fix bound for test to decide when to compensate for character 0 added by call to fgets. From-SVN: r235710
Diffstat (limited to 'gcc/ada/make.adb')
-rw-r--r--gcc/ada/make.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/make.adb b/gcc/ada/make.adb
index a2c4c9e..261f2a6 100644
--- a/gcc/ada/make.adb
+++ b/gcc/ada/make.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-2015, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2016, 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- --
@@ -2978,7 +2978,7 @@ package body Make is
Comp_Last := Comp_Last + 1;
Comp_Args (Comp_Last) := AdaSCIL_Flag;
- elsif not Ada_File_Name (S) and then not Targparm.AAMP_On_Target then
+ elsif not Ada_File_Name (S) then
Comp_Last := Comp_Last + 1;
Comp_Args (Comp_Last) := Ada_Flag_1;
Comp_Last := Comp_Last + 1;
@@ -5816,7 +5816,7 @@ package body Make is
Finish_Program (Project_Tree, E_Success);
else
- -- Call Get_Target_Parameters to ensure that AAMP_On_Target gets
+ -- Call Get_Target_Parameters to ensure that flags are properly
-- set before calling Usage.
Targparm.Get_Target_Parameters;