summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr45461.c
blob: 7968f73356ec913d6890f18160bedd24a2b2a6e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR middle-end/45461 */
/* { dg-do compile } */

#include <stdarg.h>

int
foo (int i, ...)
{
  short e;
  va_list ap;
  va_start (ap, i);
  e = va_arg (ap, short);	/* { dg-warning "is promoted" } */
  va_end (ap);
  return e;
}

/* { dg-message "note: \\(so you should pass" "" {target *-*-* } 12 } */
/* { dg-message "note: if this code" "" {target *-*-* } 12 } */