PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-mulconj-1.c
blob27b526f9115939a57568b8be60b58de893936990
1 /* PR tree-optimization/23452 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -ffast-math -fdump-tree-gimple" } */
5 _Complex double foo(_Complex double z)
7 return z * ~z;
10 _Complex int bar(_Complex int z)
12 return z * ~z;
15 /* { dg-final { scan-tree-dump-times "CONJ_EXPR" 0 "gimple" } } */