]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr69162.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr69162.c
CommitLineData
33f0852f
JJ
1/* PR tree-optimization/69162 */
2/* { dg-do compile } */
3/* { dg-options "-O2" } */
4
5#include <stdarg.h>
6
7int
8foo (void *a)
9{
10 va_list *b = a;
11 return va_arg (*b, int);
12}