Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / functionalities / rerun_and_expr_dylib / rebuild.cpp
blobb9d835184dde8ed221758c5c26332e2a5d126144
1 struct Base {
2 int m_base_val = 42;
3 };
5 LLDB_DYLIB_EXPORT struct Foo : public Base {
6 int m_derived_val = 137;
7 } global_foo;