brintos

brintos / llvm-project-archived public Read only

0
0
Text · 159 B · 9e14088 Raw
11 lines · cpp
1int d_init()2{3    return 123;4}5 6int d_global = d_init();7 8int LLDB_DYLIB_EXPORT d_function() {9  return 700; // Find this line number within d_dunction().10}11