aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/raise-gcc.c
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2014-10-10 16:32:30 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2014-10-10 16:32:30 +0200
commitd6cd5d3493f6fb565ff9300577deeebe37143673 (patch)
tree61cbeeedcbb69a0c2d6e113c5f6afb4a66672e5c /gcc/ada/raise-gcc.c
parent33b87152da3942dfc8f34c6447a6bfed307fca0e (diff)
downloadgcc-d6cd5d3493f6fb565ff9300577deeebe37143673.zip
gcc-d6cd5d3493f6fb565ff9300577deeebe37143673.tar.gz
gcc-d6cd5d3493f6fb565ff9300577deeebe37143673.tar.bz2
[multiple changes]
2014-10-10 Gary Dismukes <dismukes@adacore.com> * sinfo.ads, gnat_ugn.texi, a-except.adb, a-except-2005.adb, raise-gcc.c Spelling changes (prolog => prologue, epilog => epilogue). 2014-10-10 Ed Schonberg <schonberg@adacore.com> * sem_ch5.adb (Is_Wrapped_In_Block): Handle properly blocks that contain pragmas generated for loop invariants and type predicates. Clarify use of this subprogram. From-SVN: r216087
Diffstat (limited to 'gcc/ada/raise-gcc.c')
-rw-r--r--gcc/ada/raise-gcc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/raise-gcc.c b/gcc/ada/raise-gcc.c
index f33fd1f..747a9de 100644
--- a/gcc/ada/raise-gcc.c
+++ b/gcc/ada/raise-gcc.c
@@ -6,7 +6,7 @@
* *
* C Implementation File *
* *
- * Copyright (C) 1992-2013, Free Software Foundation, Inc. *
+ * Copyright (C) 1992-2014, Free Software Foundation, Inc. *
* *
* GNAT is free software; you can redistribute it and/or modify it under *
* terms of the GNU General Public License as published by the Free Soft- *
@@ -1432,7 +1432,7 @@ __gnat_adjust_context (unsigned char *unw, ULONG64 rsp)
{
unsigned int len;
- /* Version = 1, no flags, no prolog. */
+ /* Version = 1, no flags, no prologue. */
if (unw[0] != 1 || unw[1] != 0)
return;
len = unw[2];
@@ -1442,7 +1442,7 @@ __gnat_adjust_context (unsigned char *unw, ULONG64 rsp)
unw += 4;
while (len > 0)
{
- /* Offset in prolog = 0. */
+ /* Offset in prologue = 0. */
if (unw[0] != 0)
return;
switch (unw[1] & 0xf)