Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / bolt / test / Inputs / icf_main.c
blob702dfdfacb8fc6c76ccd149632fc86ad404c5f56
1 // Test identical code folding handling.
2 #include <stdio.h>
4 int foo() {
5 return 0;
8 int bar() {
9 return 0;
12 int main() {
13 return foo();