aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/sem_aux.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2011-08-03 12:10:40 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2011-08-03 12:10:40 +0200
commit95eb8b69e6289ad1bc196915ba741f035817ce4b (patch)
tree26c7af0748202e6e8920fded388bf64f284d3c3c /gcc/ada/sem_aux.adb
parent92e770277f735559fae532ddcf7307d50e209b2f (diff)
downloadgcc-95eb8b69e6289ad1bc196915ba741f035817ce4b.zip
gcc-95eb8b69e6289ad1bc196915ba741f035817ce4b.tar.gz
gcc-95eb8b69e6289ad1bc196915ba741f035817ce4b.tar.bz2
[multiple changes]
2011-08-03 Javier Miranda <miranda@adacore.com> * exp_util.adb, sem_aux.adb, exp_util.ads, sem_aux.ads: Move routine Is_VM_By_Copy_Actual from sem_aux to exp_util. 2011-08-03 Bob Duff <duff@adacore.com> * sem_ch8.adb (Is_Primitive_Operator_In_Use): Always check In_Use on the Base_Type. 2011-08-03 Joel Brobecker <brobecker@adacore.com brobecker> * g-sha256.ads, g-sha512.ads, g-sha1.ads, g-sha224.ads, g-sha384.ads, g-sehash.ads: Fix typo. Update header. 2011-08-03 Thomas Quinot <quinot@adacore.com> * exp_ch6.adb (Expand_Actuals): Remove Ada_2005 guard on build-in-place expansion. 2011-08-03 Gary Dismukes <dismukes@adacore.com> * sem_ch4.adb (Analyze_Overloaded_Selected_Component): Consider prefixes of private types along with records, since the selector may be a discriminant. * sem_res.adb (Resolve_Selected_Component): Consider prefixes of private types along with records, since the selector may be a discriminant. From-SVN: r177259
Diffstat (limited to 'gcc/ada/sem_aux.adb')
-rwxr-xr-xgcc/ada/sem_aux.adb13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/ada/sem_aux.adb b/gcc/ada/sem_aux.adb
index fd78fbf..0e5c3db 100755
--- a/gcc/ada/sem_aux.adb
+++ b/gcc/ada/sem_aux.adb
@@ -36,7 +36,6 @@ with Namet; use Namet;
with Sinfo; use Sinfo;
with Snames; use Snames;
with Stand; use Stand;
-with Targparm; use Targparm;
package body Sem_Aux is
@@ -785,18 +784,6 @@ package body Sem_Aux is
end if;
end Is_Limited_Type;
- --------------------------
- -- Is_VM_By_Copy_Actual --
- --------------------------
-
- function Is_VM_By_Copy_Actual (N : Node_Id) return Boolean is
- begin
- return VM_Target /= No_VM
- and then Nkind (N) = N_Identifier
- and then Present (Renamed_Object (Entity (N)))
- and then Nkind (Renamed_Object (Entity (N))) = N_Slice;
- end Is_VM_By_Copy_Actual;
-
----------------------
-- Nearest_Ancestor --
----------------------