Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / Shell / SymbolFile / OnDemand / Inputs / basic.cpp
blobec459383fc46ebeb8b31b89fd55b10588dd6e39e
1 int bar(int x, int y) { return x + y + 5; }
3 int foo(int x, int y) { return bar(x, y) + 12; }
5 int main(int argc, char **argv) { return foo(33, 78); }