Davide Italiano 98f0021dd3 [lldb] Enable debugging of binaries with mixed (splitted/regular) dwarf
This recommits the patch, now that I verified that the bot instability
is due to something else. Sorry for the noise.

llvm-svn: 323879
2018-01-31 15:17:47 +00:00

12 lines
94 B
C

extern int f();
void g() {
int y = 14;
int x = f();
}
int main() {
g();
return 0;
}