You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
19
external/llvm/test/tools/llvm-symbolizer/Inputs/coff-dwarf.cpp
vendored
Normal file
19
external/llvm/test/tools/llvm-symbolizer/Inputs/coff-dwarf.cpp
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
// To generate the corresponding EXE, run:
|
||||
// clang-cl -MD -O2 -gdwarf -c coff-dwarf.cpp && lld-link -debug coff-dwarf.obj
|
||||
|
||||
extern "C" int puts(const char *str);
|
||||
|
||||
void __declspec(noinline) foo() {
|
||||
puts("foo1");
|
||||
puts("foo2");
|
||||
}
|
||||
|
||||
// LLVM should inline this into main.
|
||||
static void bar() {
|
||||
foo();
|
||||
}
|
||||
|
||||
int main() {
|
||||
bar();
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user