Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[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);