teak-llvm/lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/main.m
Adrian Prantl 1cbe003894 [-gmodules] Let LLDB log a warning if the Clang module hash mismatches.
This feature is mostly there to aid debugging of Clang module issues,
since the only useful actual the end-user can to is to recompile their
program.

Differential Revision: https://reviews.llvm.org/D70272
2019-11-15 11:52:13 -08:00

7 lines
103 B
Objective-C

#include "f.h"
int main(int argc, char **argv) {
my_int i = argc;
f(); // break here
return 0;
}