subl_add(int x,int y)1int subl_add(int x, int y) { return x - (x + y); } 2 3 /* 4 * check-name: simplify-same-subl-add 5 * check-command: test-linearize -Wno-decl $file 6 * 7 * check-output-ignore 8 * check-output-contains: neg\\..* %arg2 9 * check-output-excludes: add\\. 10 * check-output-excludes: sub\\. 11 */ 12