diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-12 10:56:02 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-12 10:56:02 +0000 |
commit | d06854199f4d8956a9f997119554bf24f7d09d85 (patch) | |
tree | 3f4ee2a3f34ece8b71fc886093da3456a5ae2ad1 /gcc/ada/rtsfind.ads | |
parent | aee191caa038c79baa7fafea4ae2516312ae508e (diff) | |
download | gcc-d06854199f4d8956a9f997119554bf24f7d09d85.tar.gz |
2012-07-12 Vasiliy Fofanov <fofanov@adacore.com>
* vms_data.ads: Add VMS qualifiers for -gnatn1/2 switches.
2012-07-12 Thomas Quinot <quinot@adacore.com>
* exp_ch5.adb, exp_pakd.adb, rtsfind.ads, freeze.adb, sem_util.adb,
sem_util.ads, exp_aggr.adb
(Exp_Aggr.Packed_Array_Aggregate_Handled): Simplify processing
for reverse storage order aggregate.
(Exp_Pakd.Byte_Swap): New utility routine used by...
(Exp_Pakd.Expand_Bit_Packed_Element_Set,
Expand_Packed_Element_Reference): For the case of a free-standing
packed array with reverse storage order, perform byte swapping.
(Rtsfind): Make new entities RE_Bswap_{16,32,64} available.
(Freeze.Check_Component_Storage_Order): New utility routine
to enforce legality rules for nested composite types whose
enclosing composite has an explicitly defined Scalar_Storage_Order
attribute.
(Sem_Util.In_Reverse_Storage_Order_Object): Renamed from
Sem_Util.In_Reverse_Storage_Order_Record, as SSO now applies to
array types as well.
(Exp_Ch5.Expand_Assign_Array): Remove now unnecessary kludge
for change of scalar storage order in assignments. The Lhs and
Rhs now always have the same scalar storage order.
2012-07-12 Hristian Kirtchev <kirtchev@adacore.com>
* g-debpoo.adb (Allocate): Add local constant
No_Element. Initialize the allocated memory chunk to No_Element.
2012-07-12 Ed Schonberg <schonberg@adacore.com>
* sem_ch12.adb (Validate_Derived_Type_Instance): Handle properly
the case of an instance of a child unit where a formal derived
type DT is an extension of a type T declared in a parent unit,
and the actual in the instance of the child is the type T declared
in the parent instance, and that actual is not a derived type.
2012-07-12 Eric Botcazou <ebotcazou@adacore.com>
Tristan Gingold <gingold@adacore.com>
* system-hpux-ia64.ads: Enable ZCX by default.
* gcc-interface/Makefile.in: Use alternate stack on ia64-hpux.
Change soext to .so.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189439 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/rtsfind.ads')
-rw-r--r-- | gcc/ada/rtsfind.ads | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ada/rtsfind.ads b/gcc/ada/rtsfind.ads index 2a16fdf97ec..05983814a5e 100644 --- a/gcc/ada/rtsfind.ads +++ b/gcc/ada/rtsfind.ads @@ -215,6 +215,7 @@ package Rtsfind is System_Aux_DEC, System_Bit_Ops, System_Boolean_Array_Operations, + System_Byte_Swapping, System_Checked_Pools, System_Compare_Array_Signed_16, System_Compare_Array_Signed_32, @@ -772,6 +773,10 @@ package Rtsfind is RE_Vector_Nxor, -- System_Boolean_Array_Operations, RE_Vector_Xor, -- System_Boolean_Array_Operations, + RE_Bswap_16, -- System.Byte_Swapping + RE_Bswap_32, -- System.Byte_Swapping + RE_Bswap_64, -- System.Byte_Swapping + RE_Checked_Pool, -- System.Checked_Pools RE_Compare_Array_S8, -- System.Compare_Array_Signed_8 @@ -1996,6 +2001,10 @@ package Rtsfind is RE_Vector_Nxor => System_Boolean_Array_Operations, RE_Vector_Xor => System_Boolean_Array_Operations, + RE_Bswap_16 => System_Byte_Swapping, + RE_Bswap_32 => System_Byte_Swapping, + RE_Bswap_64 => System_Byte_Swapping, + RE_Compare_Array_S8 => System_Compare_Array_Signed_8, RE_Compare_Array_S8_Unaligned => System_Compare_Array_Signed_8, |