]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
linux-user: Extend image_info struct with MIPS fp_abi and interp_fp_abi fields
authorStefan Markovic <smarkovic@wavecomp.com>
Mon, 22 Oct 2018 14:43:40 +0000 (16:43 +0200)
committerAleksandar Markovic <amarkovic@wavecomp.com>
Mon, 29 Oct 2018 14:50:23 +0000 (15:50 +0100)
Add MIPS specific image_info struct fields fp_abi and interp_fp_abi
to store executable and interpreter fp_abi values (based on kernel
struct arch_elf_state in mips/include/asm/elf.h).

Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com>
linux-user/qemu.h

index 1beb6a2cfc4c4a9b5064283be2ab067bfc64f044..a752c1c97a008726a6152ec27dc14ec5174452c3 100644 (file)
@@ -61,6 +61,10 @@ struct image_info {
         abi_ulong       interpreter_loadmap_addr;
         abi_ulong       interpreter_pt_dynamic_addr;
         struct image_info *other_info;
+#ifdef TARGET_MIPS
+        int             fp_abi;
+        int             interp_fp_abi;
+#endif
 };
 
 #ifdef TARGET_I386