1int add_subl(int x, int y) { return (x + y) - x; }
2
3/*
4 * check-name: simplify-same-add-subl
5 * check-command: test-linearize -Wno-decl $file
6 *
7 * check-output-start
8add_subl:
9.L0:
10	<entry-point>
11	ret.32      %arg2
12
13
14 * check-output-end
15 */
16