https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71602
--- Comment #3 from vries at gcc dot gnu.org --- Here ( https://gcc.gnu.org/onlinedocs/gccint/Register-Arguments.html#index-TARGET_005fCANONICAL_005fVA_005fLIST_005fTYPE-4283 ) I read: ... Target Hook: tree TARGET_CANONICAL_VA_LIST_TYPE (tree type) This hook returns the va_list type of the calling convention specified by the type of type. If type is not a valid va_list type, it returns NULL_TREE. ... I wonder if the root cause of the problem is that ix86_canonical_va_list_type doesn't return NULL. Currently it just strips the pointer from the type: ... (gdb) call debug_generic_expr ( va_type ) struct [1] * (gdb) call debug_generic_expr ( canon_va_type ) struct [1] ...