Files
clang-p2996/lldb/test/API/functionalities/thread/jump/other.cpp
Pavel Labath a06342d250 [lldb] Modify TestThreadJump to work around a change in clang's debug_line generation
After D133376, jumping to the return line in the otherfn function became
ambiguous because it has two line entries associated with it. Work
around that problem by changing the function. Filed PR59458 to track
possible improvements in jump target disambiguation.
2022-12-12 09:31:35 +01:00

5 lines
59 B
C++

int otherfn() {
int x = 4; // other marker
return x;
}