comparison gcc/testsuite/gcc.dg/uninit-12-O0.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 /* PR 23497 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wuninitialized" } */
4
5 typedef _Complex float C;
6 C foo()
7 {
8 C f;
9 __real__ f = 0;
10 __imag__ f = 0;
11 return f;
12 }