mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 04:55:50 -04:00

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
7 lines
103 B
Objective-C
7 lines
103 B
Objective-C
#include "f.h"
|
|
int main(int argc, char **argv) {
|
|
my_int i = argc;
|
|
f(); // break here
|
|
return 0;
|
|
}
|