Luboš Luňák 13978643b6 [lldb] implement 'up' and 'down' shortcuts in lldb gui
Also add a unittest.

Differential Revision: https://reviews.llvm.org/D68541
2020-07-29 22:30:23 +02:00

8 lines
112 B
C

extern int func();
int main(int argc, char **argv) {
func(); // Break here
func(); // Second
return 0;
}