summaryrefslogtreecommitdiff
path: root/gcc/ada/s-parint.adb
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-08 11:46:11 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-08 11:46:11 +0000
commitc8b24b3e5723fea58f3a7972c21fec7b38ff737e (patch)
tree0950bd0e2dbb0871d4fd7b9aa078d529c09dbd82 /gcc/ada/s-parint.adb
parent78185a20714f9d2ff263bf8eb1449fb51a8846c0 (diff)
downloadgcc-c8b24b3e5723fea58f3a7972c21fec7b38ff737e.tar.gz
* exp_dist.adb (Specific_Build_General_Calling_Stubs,
Specific_Build_Stub_Target): New subprograms. (Build_Subprogram_Calling_Stubs): Make this procedure independent from the PCS implementation used, using the above PCS-customized subprograms. Minor reformatting. (PolyORB_Support.Helpers): New subunit containing supporting subprograms for generation of DSA code targeted to the PolyORB PCS. (Add_Stub_Type): Rewrite to isolate the parts that are specific to one implementation of the partition communication subsystem in ancillary subprograms. (Specific_Build_Stub_Type, GARLIC_Support.Build_Stub_Type, PolyORB_Support.Build_Stub_Type): New subrograms containing the PCS-specific part of Add_Stub_Type. (Insert_Partition_Check): Use runtime library function to perform E.4(19) check. * rtsfind.ads: New entity System.PolyORB_Interface.Make_Ref (RE_Same_Partition): New entity, from s-parint. * s-parint.ads, s-parint.adb (Same_Partition): New subprogram. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91884 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-parint.adb')
-rw-r--r--gcc/ada/s-parint.adb14
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/ada/s-parint.adb b/gcc/ada/s-parint.adb
index cb9ee4f3c63..11c47cd1dfd 100644
--- a/gcc/ada/s-parint.adb
+++ b/gcc/ada/s-parint.adb
@@ -306,4 +306,18 @@ package body System.Partition_Interface is
end if;
end Run;
+ --------------------
+ -- Same_Partition --
+ --------------------
+
+ function Same_Partition
+ (Left : access RACW_Stub_Type;
+ Right : access RACW_Stub_Type) return Boolean
+ is
+ pragma Unreferenced (Left);
+ pragma Unreferenced (Right);
+ begin
+ return True;
+ end Same_Partition;
+
end System.Partition_Interface;