* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.dg / uninit-C.c
blob741106cb4638b698ffc98bfd797164a7415c0736
1 /* Spurious uninitialized variable warning, inspired by libgcc2.c. */
2 /* { dg-do compile } */
3 /* { dg-options "-O -Wuninitialized" } */
5 /* Not all platforms support TImode integers. */
6 #if defined(__LP64__) && !defined(__hppa__)
7 typedef int TItype __attribute__ ((mode (TI)));
8 #else
9 typedef long TItype;
10 #endif
13 TItype
14 __subvdi3 (TItype a, TItype b)
16 TItype w;
18 w = a - b;
20 return w;