Files
clang-p2996/lldb/test/API/macosx/save_crashlog/main.c
Jim Ingham 723a1caa37 Fix the crashlog.py script's use of the load_address property.
This property is explicitly for use only in the interactive editor,
and NOT in commands.  It's use worked until we got more careful about
not leaving lldb.target lying around in the script interpreter.

I also added a quick sniff test for the save_crashlog command.

<rdar://problem/60350620>
Differential Revision: https://reviews.llvm.org/D80680
2020-05-28 09:55:40 -07:00

14 lines
106 B
C

#include <stdio.h>
void
call_me() {
printf("I was called");
}
int
main()
{
call_me();
return 0;
}