aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/s-finimp.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2010-06-14 14:46:56 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2010-06-14 14:46:56 +0200
commitee81cbe97718536484b0b623ff875d4a3fabbce0 (patch)
tree4ff6cbab8713c7b9893c800893dc57cb255b68fc /gcc/ada/s-finimp.adb
parenta40520ecc5ef565405dc8a3dcd9f5070c5dea5d3 (diff)
downloadgcc-ee81cbe97718536484b0b623ff875d4a3fabbce0.zip
gcc-ee81cbe97718536484b0b623ff875d4a3fabbce0.tar.gz
gcc-ee81cbe97718536484b0b623ff875d4a3fabbce0.tar.bz2
[multiple changes]
2010-06-14 Pascal Obry <obry@adacore.com> * s-finimp.adb: Fix typo. * raise.h: Remove duplicate blank line. 2010-06-14 Vincent Celier <celier@adacore.com> * prj-nmsc.adb (Add_Sources): Always set the object file and the switches file names, as the configuration of the language may change in an extending project. (Process_Naming_Scheme): For sources of projects that are extended, set the configuration of the language from the highest extending project where the language is declared. 2010-06-14 Gary Dismukes <dismukes@adacore.com> * sem_res.adb (Resolve_Call): For infinite recursion check, test whether the called subprogram is inherited from a containing subprogram. (Same_Or_Aliased_Subprograms): New function From-SVN: r160733
Diffstat (limited to 'gcc/ada/s-finimp.adb')
-rw-r--r--gcc/ada/s-finimp.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/s-finimp.adb b/gcc/ada/s-finimp.adb
index 9a5e534..050f799 100644
--- a/gcc/ada/s-finimp.adb
+++ b/gcc/ada/s-finimp.adb
@@ -332,10 +332,10 @@ package body System.Finalization_Implementation is
P : Finalizable_Ptr := L;
Q : Finalizable_Ptr;
- type Fake_Exception_Occurence is record
+ type Fake_Exception_Occurrence is record
Id : Exception_Id;
end record;
- type Ptr is access all Fake_Exception_Occurence;
+ type Ptr is access all Fake_Exception_Occurrence;
function To_Ptr is new
Ada.Unchecked_Conversion (Exception_Occurrence_Access, Ptr);