Files
clang-p2996/lldb/test/API/python_api/sbmodule/main.c
Med Ismail Bennani ff52ef334b [lldb/API] Add ability to check if module is backed by a file on disk
This patch introduces a new SBAPI method: `SBModule::IsFileBacked`

As the name suggests, it tells the user if the module's object file is
on disk or in memory.

rdar://68538278

Differential Revision: https://reviews.llvm.org/D118261

Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
2022-01-26 20:40:24 +01:00

6 lines
60 B
C

int main() {
while (1) // break here
;
return 42;
}