• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 int def(void);
2 
canon_arg_arg(int a,int b)3 int canon_arg_arg(int a, int b)
4 {
5 	return (a + b) == (b + a);
6 }
7 
canon_arg_reg(int a)8 int canon_arg_reg(int a)
9 {
10 	int b = def();
11 	return (a + b) == (b + a);
12 }
13 
14 /*
15  * check-name: canonical-arg
16  * check-command: test-linearize -Wno-decl $file
17  *
18  * check-output-ignore
19  * check-output-returns: 1
20  */
21