aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/xr_tabls.adb
diff options
context:
space:
mode:
authorEmmanuel Briot <briot@adacore.com>2007-10-15 15:57:46 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2007-10-15 15:57:46 +0200
commite0aacc92672d35a702586e4c1c9cf2f01d63bcd3 (patch)
treee73461e1e292481607d1e1ce527af5638144f35c /gcc/ada/xr_tabls.adb
parent03bc9897e32e8bc6995129f5347a4606d49ad42c (diff)
downloadgcc-e0aacc92672d35a702586e4c1c9cf2f01d63bcd3.zip
gcc-e0aacc92672d35a702586e4c1c9cf2f01d63bcd3.tar.gz
gcc-e0aacc92672d35a702586e4c1c9cf2f01d63bcd3.tar.bz2
xref_lib.adb (Get_Full_Type): Add support for the 'h' entity type, ie interfaces.
2007-10-15 Emmanuel Briot <briot@adacore.com> * xref_lib.adb (Get_Full_Type): Add support for the 'h' entity type, ie interfaces. * xr_tabls.adb (Add_Reference): Add support for the new 'R' reference type, for dispatching calls. From-SVN: r129340
Diffstat (limited to 'gcc/ada/xr_tabls.adb')
-rw-r--r--gcc/ada/xr_tabls.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/xr_tabls.adb b/gcc/ada/xr_tabls.adb
index 30993ee..3456bac 100644
--- a/gcc/ada/xr_tabls.adb
+++ b/gcc/ada/xr_tabls.adb
@@ -395,7 +395,7 @@ package body Xr_Tabls is
begin
case Ref_Type is
- when 'b' | 'c' | 'm' | 'r' | 'i' | ' ' | 'x' =>
+ when 'b' | 'c' | 'm' | 'r' | 'R' | 'i' | ' ' | 'x' =>
null;
when 'l' | 'w' =>
@@ -458,7 +458,7 @@ package body Xr_Tabls is
New_Ref.Next := Declaration.Body_Ref;
Declaration.Body_Ref := New_Ref;
- when 'r' | 'i' | 'l' | ' ' | 'x' | 'w' =>
+ when 'r' | 'R' | 'i' | 'l' | ' ' | 'x' | 'w' =>
New_Ref.Next := Declaration.Ref_Ref;
Declaration.Ref_Ref := New_Ref;