bolt/deps/llvm-18.1.8/lldb/test/API/functionalities/load_unload/d.cpp

11 lines
159 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
int d_init()
{
return 123;
}
int d_global = d_init();
int LLDB_DYLIB_EXPORT d_function() {
return 700; // Find this line number within d_dunction().
}