diff options
author | jb <jb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-09 17:52:11 +0000 |
---|---|---|
committer | jb <jb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-09 17:52:11 +0000 |
commit | 4658de8079c46cce77b2d92ba2c883c26dc2c7b5 (patch) | |
tree | 333f7bee17b343ab1ca08f61f6f10f2db0ccf8ed /libgfortran | |
parent | 7b6c7f4f40c21711df2307f3da56e11751653237 (diff) | |
download | gcc-4658de8079c46cce77b2d92ba2c883c26dc2c7b5.tar.gz |
PR 46686 Fix incorrect comment.
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
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 5 | ||||
-rw-r--r-- | libgfortran/runtime/backtrace.c | 2 |
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) |