* [PATCH 351] M68k math emu C99
@ 2004-01-01 20:01 Geert Uytterhoeven
0 siblings, 0 replies; only message in thread
From: Geert Uytterhoeven @ 2004-01-01 20:01 UTC (permalink / raw)
To: Linus Torvalds, Andrew Morton
Cc: Linux Kernel Development, Geert Uytterhoeven
M68k math emulator: Use C99 struct initializers
--- linux-2.6.0/arch/m68k/math-emu/fp_arith.c Sun Apr 6 10:28:29 2003
+++ linux-m68k-2.6.0/arch/m68k/math-emu/fp_arith.c Sun Oct 19 20:06:26 2003
@@ -19,12 +19,13 @@
const struct fp_ext fp_QNaN =
{
- 0, 0, 0x7fff, { ~0 }
+ .exp = 0x7fff,
+ .mant = { .m64 = ~0 }
};
const struct fp_ext fp_Inf =
{
- 0, 0, 0x7fff, { 0 }
+ .exp = 0x7fff,
};
/* let's start with the easy ones */
--- linux-2.6.0/arch/m68k/math-emu/fp_log.c Tue Jul 29 18:18:35 2003
+++ linux-m68k-2.6.0/arch/m68k/math-emu/fp_log.c Sun Oct 19 20:06:41 2003
@@ -19,7 +19,7 @@
static const struct fp_ext fp_one =
{
- 0, 0, 0x3fff, { 0 }
+ .exp = 0x3fff,
};
extern struct fp_ext *fp_fadd(struct fp_ext *dest, const struct fp_ext *src);
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-01-01 20:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-01 20:01 [PATCH 351] M68k math emu C99 Geert Uytterhoeven
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®