aboutsummaryrefslogtreecommitdiff
path: root/gdb/buildsym.c
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1997-04-17 21:32:25 +0000
committerPer Bothner <per@bothner.com>1997-04-17 21:32:25 +0000
commitb57d4d17d64d0402e2b8faa74ae70d540e5e0b9c (patch)
tree4ec2326fe9ef9b8bcc95ecafcc84a55fd5bd2d8a /gdb/buildsym.c
parentd4d2dce55312e31d9376bae7d952209bdd61196c (diff)
downloadfsf-binutils-gdb-b57d4d17d64d0402e2b8faa74ae70d540e5e0b9c.zip
fsf-binutils-gdb-b57d4d17d64d0402e2b8faa74ae70d540e5e0b9c.tar.gz
fsf-binutils-gdb-b57d4d17d64d0402e2b8faa74ae70d540e5e0b9c.tar.bz2
Change FIXME comment - should replace bubble sort by merge sort, not qsort.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r--gdb/buildsym.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c
index be8f787..b9c70b7 100644
--- a/gdb/buildsym.c
+++ b/gdb/buildsym.c
@@ -835,8 +835,7 @@ end_symtab (end_addr, objfile, section)
OBJF_REORDERED is true, then sort the pending blocks. */
if ((objfile->flags & OBJF_REORDERED) && pending_blocks)
{
- /* FIXME! Remove this horrid bubble sort and use qsort!!!
- It'd be a whole lot easier if they weren't in a linked list!!! */
+ /* FIXME! Remove this horrid bubble sort and use merge sort!!! */
int swapped;
do
{