summaryrefslogtreecommitdiff
path: root/gcc/ada/exp_ch3.adb
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2010-10-18 09:59:45 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2010-10-18 09:59:45 +0000
commit9431b9db3d771ec03e070f52553036ea99c6f80d (patch)
tree292fd2cc7ffa00814a3d1bc8bec3ae9dced57607 /gcc/ada/exp_ch3.adb
parent59d0f0f2c9bd8aa3799a1756b0f229a136f78fd4 (diff)
downloadgcc-9431b9db3d771ec03e070f52553036ea99c6f80d.tar.gz
2010-10-18 Javier Miranda <miranda@adacore.com>
* einfo.ads, einfo.adb (Primitive_Operations): New synthesized attribute. (Direct_Primitive_Operations): Renaming of old Primitive_Operations. (Set_Direct_Primitive_Operations): Renaming of old Set_Primitive_Operations. Update documentation * sem_ch3.adb, exp_util.adb, sem_ch7.adb, sem_ch8.adb, exp_ch3.adb: Replace occurrences of Set_Primitive_Operations by Set_Direct_Primitive_Operations. * sem_cat.adb (Validate_RACW_Primitives): No action needed for tagged concurrent types. * exp_dist.adb (Add_RACW_Primitive_Declarations_And_Bodies): Do not process primitives of concurrent types. * lib-xref.adb (Generate_Prim_Op_References): Minor code cleanup. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@165618 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/exp_ch3.adb')
-rw-r--r--gcc/ada/exp_ch3.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/exp_ch3.adb b/gcc/ada/exp_ch3.adb
index f67e1c4e039..aca005e7188 100644
--- a/gcc/ada/exp_ch3.adb
+++ b/gcc/ada/exp_ch3.adb
@@ -6144,8 +6144,8 @@ package body Exp_Ch3 is
(Rep, Access_Disp_Table (Def_Id));
Set_Dispatch_Table_Wrappers
(Rep, Dispatch_Table_Wrappers (Def_Id));
- Set_Primitive_Operations
- (Rep, Primitive_Operations (Def_Id));
+ Set_Direct_Primitive_Operations
+ (Rep, Direct_Primitive_Operations (Def_Id));
end;
end if;