tags:

views:

422

answers:

1

And why does gdb seem to "hit" it?

+1  A: 

According to this page, GDB is searching backward in the object code to find the beginning of a function, and it is hitting an imposed limit. If you can set the fence post limit to 0 or increase it, you might avoid the error, but it will take longer to run.

Terhorst