comparison gcc/testsuite/gcc.dg/pr52134.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-original" } */
3
4 unsigned f(unsigned t)
5 {
6 return (t*4)&-4;
7 }
8 int f1(int t)
9 {
10 return (t*4)&-4;
11 }
12
13 /* { dg-final { scan-tree-dump-not "\\\&" "original" } } */