Save result of preprocessing in a text file.
+.. index:: -gnateH (gcc)
+
+:switch:`-gnateH`
+ Set the threshold from which the RM 13.5.1(13.3/2) clause applies to 64.
+ This is useful only on 64-bit plaforms where this threshold is 128, but
+ used to be 64 in earlier versions of the compiler.
+
+
.. index:: -gnatei (gcc)
:switch:`-gnatei{nnn}`
@copying
@quotation
-GNAT User's Guide for Native Platforms , Jun 01, 2023
+GNAT User's Guide for Native Platforms , Jun 16, 2023
AdaCore
Save result of preprocessing in a text file.
@end table
+@geindex -gnateH (gcc)
+
+
+@table @asis
+
+@item @code{-gnateH}
+
+Set the threshold from which the RM 13.5.1(13.3/2) clause applies to 64.
+This is useful only on 64-bit plaforms where this threshold is 128, but
+used to be 64 in earlier versions of the compiler.
+@end table
+
@geindex -gnatei (gcc)
-- GNATPREP
-- Set to True if -C switch used.
+ Reverse_Bit_Order_Threshold : Int := -1;
+ -- GNAT
+ -- Set to the threshold from which the RM 13.5.1(13.3/2) clause applies,
+ -- or -1 if the size of the largest machine scalar is to be used.
+
RTS_Lib_Path_Name : String_Ptr := null;
RTS_Src_Path_Name : String_Ptr := null;
-- GNAT
procedure Adjust_Record_For_Reverse_Bit_Order (R : Entity_Id) is
Max_Machine_Scalar_Size : constant Uint :=
- UI_From_Int (System_Max_Integer_Size);
+ UI_From_Int (if Reverse_Bit_Order_Threshold >= 0
+ then Reverse_Bit_Order_Threshold
+ else System_Max_Integer_Size);
-- We use this as the maximum machine scalar size
SSU : constant Uint := UI_From_Int (System_Storage_Unit);
Generate_Processed_File := True;
Ptr := Ptr + 1;
+ -- -gnateH (set reverse Bit_Order threshold to 64)
+
+ when 'H' =>
+ Reverse_Bit_Order_Threshold := 64;
+ Ptr := Ptr + 1;
+
-- -gnatei (max number of instantiations)
when 'i' =>
Write_Switch_Char ("eG");
Write_Line ("Generate preprocessed source");
+ -- Line for -gnateH switch
+
+ Write_Switch_Char ("eH");
+ Write_Line ("Set reverse Bit_Order threshold to 64");
+
-- Line for -gnatei switch
Write_Switch_Char ("einn");