/* Verify that we check for uninitialized values passed to functions that we have special-cased state-machine handling for. */intdup(int old_fd);intnot_dup(int old_fd);inttest_1(){int m;returndup(m);/* { dg-warning "use of uninitialized value 'm'" "uninit" } */}inttest_2(){int m;returnnot_dup(m);/* { dg-warning "use of uninitialized value 'm'" } */}