Closed aolo2 closed 3 years ago
Could you give an example where it does not work? (It is working for me.)
It does appear to work on a super-simple example, but not on any of my actual code. Here's a snippet where I can't step out of block on any of the lines (until
command doesn't get passed to gdb at all):
while (*p != 0) {
if (dest_files) {
dest_files[nfiles].filename = (char *) p;
}
while (*p != 0) {
++p;
}
++p;
// ...
if (dest_files) {
if (dir_index) {
dest_files[nfiles].dir = dest_directories[dir_index - 1];
} else {
dest_files[nfiles].dir = ".";
}
}
p += offset;
}
Does commit 99a358b work?
It does, thanks!
What the title says.