I think the only issue here was that we would erroneously consider functions which are "in the middle" of the function were stepping to as a part of the function, and would try to step into them (likely stepping out of the function instead) instead of giving up early.
10 lines
210 B
Plaintext
10 lines
210 B
Plaintext
SECTIONS {
|
|
.text.ordered : {
|
|
*(.text.call_me)
|
|
*(.text.foo)
|
|
*(.text.call_me.call_me.__part.1)
|
|
*(.text.call_me.call_me.__part.2)
|
|
*(.text.call_me.call_me.__part.3)
|
|
}
|
|
} INSERT BEFORE .text;
|