brintos

brintos / llvm-project-archived public Read only

0
0
Text · 202 B · b97bcc1 Raw
9 lines · cpp
1#include "common.h"2 3// Parameter "Foo*" forces LLDB to parse "Foo" from the object4// file that it is stopped in.5void lib1_func(Foo *) {6  // Force definition into lib1.o debug-info.7  Foo{}.foo();8}9