Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / docs / analyzer / checkers / dividezero_example.c
blob00ffaac491e50ef62b31100c0127291405815aac
1 void test(int z) {
2 if (z == 0)
3 int x = 1 / z; // warn
6 void test() {
7 int x = 1;
8 int y = x % 0; // warn