diff options
author | Gary Benson <gary@redhat.com> | 2012-01-19 12:51:04 +0000 |
---|---|---|
committer | Gary Benson <gary@redhat.com> | 2012-01-19 12:51:04 +0000 |
commit | 4932389582c529bfc28a553381a422ba6e0ec728 (patch) | |
tree | 03c8a93b9f0bde90a81563e8e876dd5064757243 /gdb/mdebugread.c | |
parent | 26f6125ebd2bfe1e738a5b8f28cb77001f7c540e (diff) | |
download | gdb-4932389582c529bfc28a553381a422ba6e0ec728.zip gdb-4932389582c529bfc28a553381a422ba6e0ec728.tar.gz gdb-4932389582c529bfc28a553381a422ba6e0ec728.tar.bz2 |
2012-01-19 Gary Benson <gbenson@redhat.com>
* mdebugread.c (sort_blocks): Replace integer constants with ones
derived from FIRST_LOCAL_BLOCK.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index c95c09b..e6d3b8c 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -4713,7 +4713,7 @@ sort_blocks (struct symtab *s) { struct blockvector *bv = BLOCKVECTOR (s); - if (BLOCKVECTOR_NBLOCKS (bv) <= 2) + if (BLOCKVECTOR_NBLOCKS (bv) <= FIRST_LOCAL_BLOCK) { /* Cosmetic */ if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0) @@ -4728,7 +4728,7 @@ sort_blocks (struct symtab *s) * are very different. It would be nice to find a reliable test * to detect -O3 images in advance. */ - if (BLOCKVECTOR_NBLOCKS (bv) > 3) + if (BLOCKVECTOR_NBLOCKS (bv) > FIRST_LOCAL_BLOCK + 1) qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK), BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK, sizeof (struct block *), |