OSDN Git Service

PR 46686 Fix incorrect comment.
authorjb <jb@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 9 Nov 2011 17:52:11 +0000 (17:52 +0000)
committerjb <jb@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 9 Nov 2011 17:52:11 +0000 (17:52 +0000)
2011-11-09  Janne Blomqvist  <jb@gcc.gnu.org>

PR fortran/46686
* runtime/backtrace.c (show_backtrace): Fix incorrect comment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181217 138bc75d-0d04-0410-961f-82ee72b054a4

libgfortran/ChangeLog
libgfortran/runtime/backtrace.c

index 59d1a56..09172f1 100644 (file)
@@ -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.
index 70aae91..606dd34 100644 (file)
@@ -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)