Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / functionalities / process_save_core / main.cpp
blob4037ea522cac59038551ecd61be93d28cc022cab
1 int global = 42;
3 int
4 bar(int x)
6 int y = 4*x + global;
7 return y;
10 int
11 foo(int x)
13 int y = 2*bar(3*x);
14 return y;
17 int
18 main()
20 return 0 * foo(1);