mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 07:56:07 +00:00

LLVM supports DWARF 5 linetable extension to store source files inline in DWARF. This is particularly useful for compiler-generated source code. This implementation tries to materialize them as temporary files lazily, so SBAPI clients don't need to be aware of them. rdar://110926168
8 lines
88 B
C
8 lines
88 B
C
void f();
|
|
void stop() {}
|
|
|
|
int main(int argc, char const *argv[]) {
|
|
f();
|
|
return 0;
|
|
}
|