foo(int x,int * ptr)1 int foo(int x, int *ptr)
2 {
3 int t = x + 1;
4 *ptr = t;
5 return t + -1;
6 }
7
8 /*
9 * check-name: reassoc-op-op1
10 * check-command: test-linearize -Wno-decl $file
11 *
12 * check-output-ignore
13 * check-output-pattern(1): add\\.
14 */
15