comparison gcc/testsuite/gcc.dg/uninit-C-O0.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* Spurious uninitialized variable warning, inspired by libgcc2.c. */ 1 /* Spurious uninitialized variable warning, inspired by libgcc2.c. */
2 /* { dg-do compile } */ 2 /* { dg-do compile } */
3 /* { dg-options "-Wuninitialized" } */ 3 /* { dg-options "-Wuninitialized" } */
4 4
5 /* Not all platforms support TImode integers. */ 5 /* Not all platforms support TImode integers. */
6 #if (defined(__LP64__) && !defined(__hppa__)) || defined(__SPU__) 6 #if defined(__LP64__) && !defined(__hppa__)
7 typedef int TItype __attribute__ ((mode (TI))); 7 typedef int TItype __attribute__ ((mode (TI)));
8 #else 8 #else
9 typedef long TItype; 9 typedef long TItype;
10 #endif 10 #endif
11 11