[Qemu-devel] [PATCH 1/6] Define MIPS_ABI_FP_UNKNOWN macro

Stefan Markovic posted 6 patches 7 years ago
There is a newer version of this series
[Qemu-devel] [PATCH 1/6] Define MIPS_ABI_FP_UNKNOWN macro
Posted by Stefan Markovic 7 years ago
From: Stefan Markovic <smarkovic@wavecomp.com>

Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com>
---
 include/elf.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/elf.h b/include/elf.h
index 5f45f9b..c151164 100644
--- a/include/elf.h
+++ b/include/elf.h
@@ -87,6 +87,8 @@ typedef int64_t  Elf64_Sxword;
 #define EF_MIPS_MACH_LS3A     0x00a20000  /* ST Microelectronics Loongson 3A */
 #define EF_MIPS_MACH          0x00ff0000  /* EF_MIPS_MACH_xxx selection mask */
 
+#define MIPS_ABI_FP_UNKNOWN   (-1)        /* Unknown FP ABI (internal)       */
+
 #define MIPS_ABI_FP_ANY       0x0         /* FP ABI doesn't matter           */
 #define MIPS_ABI_FP_DOUBLE    0x1         /* -mdouble-float                  */
 #define MIPS_ABI_FP_SINGLE    0x2         /* -msingle-float                  */
-- 
1.9.1


Re: [Qemu-devel] [PATCH 1/6] Define MIPS_ABI_FP_UNKNOWN macro
Posted by Aleksandar Markovic 7 years ago
> Subject: [PATCH 1/6] Define MIPS_ABI_FP_UNKNOWN macro
> 
> From: Stefan Markovic <smarkovic@wavecomp.com>
> 
> Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com>
> ---

A brief commit message is needed. From what kernel or glibc header is this constant copied? Other than that:

Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com>