Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.dg / pointer-arith-10.c
blob220891e20972d45a719b984ee72e14a3bad91a5b
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-original" } */
4 char *foo(char *p, __SIZE_TYPE__ i)
6 return (char *)i + (__SIZE_TYPE__)p;
9 /* { dg-final { scan-tree-dump "p +" "original" } } */
10 /* { dg-final { cleanup-tree-dump "original" } } */