summaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
Diffstat (limited to 'libgfortran')
-rw-r--r--libgfortran/ChangeLog5
-rw-r--r--libgfortran/runtime/backtrace.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 59d1a564340..09172f1fe28 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,8 @@
+2011-11-09 Janne Blomqvist <jb@gcc.gnu.org>
+
+ PR fortran/46686
+ * runtime/backtrace.c (show_backtrace): Fix incorrect comment.
+
2011-11-09 Tobias Burnus <burnus@net-b.de>
* configure.ac: Make more cross-compile friendly.
diff --git a/libgfortran/runtime/backtrace.c b/libgfortran/runtime/backtrace.c
index 70aae91cfe9..606dd34e9d4 100644
--- a/libgfortran/runtime/backtrace.c
+++ b/libgfortran/runtime/backtrace.c
@@ -210,7 +210,7 @@ show_backtrace (void)
int f[2], pid, inp[2];
/* Don't output an error message if something goes wrong, we'll simply
- fall back to the pstack and glibc backtraces. */
+ fall back to printing the addresses. */
if (pipe (f) != 0)
break;
if (pipe (inp) != 0)