summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr105331.c
blob: 06cf6d6d90194555e19e273a23cb561ab53b4297 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR target/105331 */
/* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */

#include <stdarg.h>

int
foo (va_list *va)
{
  return va_arg (*va, double _Complex);	/* { dg-bogus "may be used uninitialized" } */
}