mips: Fix compat32 library builds from r366162

Re-add the a_ptr and a_fcn fields to Elf32_Auxinfo.

MFC after:	1 week
Sponsored by:	Juniper Networks, Inc.
This commit is contained in:
Justin Hibbits 2020-09-25 19:04:03 +00:00
parent fcefa24551
commit ebf7855dcd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=366169

View File

@ -105,6 +105,10 @@ typedef struct { /* Auxiliary vector entry on initial stack */
int a_type; /* Entry type. */
union {
int a_val; /* Integer value. */
#ifndef __mips_n64
void *a_ptr; /* Address. */
void (*a_fcn)(void); /* Function pointer (not used). */
#endif
} a_un;
} Elf32_Auxinfo;