https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122865

Martin Uecker <uecker at tugraz dot at> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |uecker at tugraz dot at

--- Comment #1 from Martin Uecker <uecker at tugraz dot at> ---

Reduced:

#include <stdarg.h>
#include <stdio.h>

typedef struct {
    int x;
} X;

int h(va_list ap)
{
    __builtin_types_compatible_p(X, typeof(*ap));    
    return 0;
}

Reply via email to