diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2017-11-08 16:25:03 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2017-11-08 16:25:03 +0000 |
commit | 45a6947d0f40ca6bfebd430969087e0595c47cb8 (patch) | |
tree | f9f53f4e847c46d6ec4177d393c7bf8d0c6b62a8 /gcc/ada/spark_xrefs.ads | |
parent | 00b3de222b3bc8eff6fb95219d7aa963b7fd277d (diff) | |
download | gcc-45a6947d0f40ca6bfebd430969087e0595c47cb8.zip gcc-45a6947d0f40ca6bfebd430969087e0595c47cb8.tar.gz gcc-45a6947d0f40ca6bfebd430969087e0595c47cb8.tar.bz2 |
spark_xrefs.ads (SPARK_Scope_Record): Rename Scope_Id component to Entity.
2017-11-08 Piotr Trojanek <trojanek@adacore.com>
* spark_xrefs.ads (SPARK_Scope_Record): Rename Scope_Id component to
Entity.
* lib-xref-spark_specific.adb, spark_xrefs.adb: Propagate renaming of
the Scope_Id record component.
From-SVN: r254542
Diffstat (limited to 'gcc/ada/spark_xrefs.ads')
-rw-r--r-- | gcc/ada/spark_xrefs.ads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/spark_xrefs.ads b/gcc/ada/spark_xrefs.ads index 7ac0901..c5604fd 100644 --- a/gcc/ada/spark_xrefs.ads +++ b/gcc/ada/spark_xrefs.ads @@ -109,8 +109,8 @@ package SPARK_Xrefs is -- determined. type SPARK_Scope_Record is record - Scope_Id : Entity_Id; - -- Pointer to scope name in ALI file + Entity : Entity_Id; + -- Entity that is represented by the scope File_Num : Nat; -- Set to the file dependency number for the scope |