diff options
author | Ulrich Drepper <drepper@gmail.com> | 2012-01-07 11:49:33 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2012-01-07 11:49:33 -0500 |
commit | 305502f69d417f7599ea18cceca280ee87627696 (patch) | |
tree | 3025d814d5d77415170af622852e809816f0c333 /sysdeps | |
parent | e40bca1ef963f9f6a6dc9e8379391115bb9c756f (diff) | |
download | glibc-305502f69d417f7599ea18cceca280ee87627696.zip glibc-305502f69d417f7599ea18cceca280ee87627696.tar.gz glibc-305502f69d417f7599ea18cceca280ee87627696.tar.bz2 |
Fix up a comment
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/x86_64/backtrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/x86_64/backtrace.c b/sysdeps/x86_64/backtrace.c index af65179..7542eb4 100644 --- a/sysdeps/x86_64/backtrace.c +++ b/sysdeps/x86_64/backtrace.c @@ -109,7 +109,7 @@ __backtrace (array, size) if (size >= 1) unwind_backtrace (backtrace_helper, &arg); - /* _Unwind_Backtrace on IA-64 seems to put NULL address above + /* _Unwind_Backtrace seems to put NULL address above _start. Fix it up here. */ if (arg.cnt > 1 && arg.array[arg.cnt - 1] == NULL) --arg.cnt; |