diff options
author | Alan Modra <amodra@gmail.com> | 2009-02-16 08:02:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-02-16 08:02:29 +0000 |
commit | d2ae7be0b282653dc7540ca33d4d2a775fff03f3 (patch) | |
tree | af3ca9a6224faf18914eba9ed2e71f82725403aa /ld/ldlang.c | |
parent | bde18da45e5dea021d600aadeab702a6f7e31cb2 (diff) | |
download | gdb-d2ae7be0b282653dc7540ca33d4d2a775fff03f3.zip gdb-d2ae7be0b282653dc7540ca33d4d2a775fff03f3.tar.gz gdb-d2ae7be0b282653dc7540ca33d4d2a775fff03f3.tar.bz2 |
* ldlang.c (process_insert_statements): ASSERT that output section
statements are in order.
Diffstat (limited to 'ld/ldlang.c')
-rw-r--r-- | ld/ldlang.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ld/ldlang.c b/ld/ldlang.c index 0bd82cb..cc390b0 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -3438,7 +3438,10 @@ process_insert_statements (void) { /* Keep pointers to the first and last output section statement in the sequence we may be about to move. */ - last_os = &(*s)->output_section_statement; + os = &(*s)->output_section_statement; + + ASSERT (last_os == NULL || last_os->next == os); + last_os = os; /* Set constraint negative so that lang_output_section_find won't match this output section statement. At this |