Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / macosx / indirect_symbol / main.c
blobb5af058d00b1c6f3be2f67ebe5582cb3f72f9784
1 extern int call_through_indirect(int);
2 extern int reexport_to_indirect(int);
4 int
5 main ()
7 int indirect_result = call_through_indirect(20); // Set breakpoint here to step in indirect.
8 indirect_result = call_through_indirect(30);
10 int reexport_result = reexport_to_indirect (20); // Set breakpoint here to step in reexported.
11 reexport_result = reexport_to_indirect (30);
13 return 0;