comparison gcc/testsuite/c-c++-common/pr70651.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* PR c/70651 */
2 /* { dg-do compile } */
3 /* { dg-prune-output "\[^\n\r\]*first argument to .va_arg. not of type .va_list.\[^\n\r\]*" } */
4
5 void fn1 ()
6 {
7 char **a = 0;
8 __builtin_va_arg (a, char **);
9 }