OSDN Git Service

* config/i386/i386.md (UNSPEC_VSIBADDR): New.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr45461.c
1 /* PR middle-end/45461 */
2 /* { dg-do compile } */
3
4 #include <stdarg.h>
5
6 int
7 foo (int i, ...)
8 {
9   short e;
10   va_list ap;
11   va_start (ap, i);
12   e = va_arg (ap, short);       /* { dg-warning "is promoted" } */
13   va_end (ap);
14   return e;
15 }
16
17 /* { dg-message "note: \\(so you should pass" "" {target *-*-* } 12 } */
18 /* { dg-message "note: if this code" "" {target *-*-* } 12 } */