aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr45461.c
blob: 7f287bd0305471828bd454535a45e9713d2964fe (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" "promoted" } */
  va_end (ap);
  return e;
}

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