Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / tools / scan-build-py / tests / functional / src / emit-two.c
blobfaea77167f4c3734a1a46f1b15441c0d6fbd7a73
2 int bad_guy(int * i)
4 *i = 9;
5 return *i;
8 void bad_guy_test()
10 int * ptr = 0;
12 bad_guy(ptr);