kill-phisrc.c 260 B

12345678910111213141516171819202122
  1. int foo(int a, int b)
  2. {
  3. int r = a + b;
  4. if (a && 0) {
  5. int s = r;
  6. if (b)
  7. s = 0;
  8. (void) s;
  9. }
  10. return 0;
  11. }
  12. /*
  13. * check-name: kill-phisrc
  14. * check-command: test-linearize -Wno-decl $file
  15. *
  16. * check-output-ignore
  17. * check-output-excludes: add\\.
  18. */