diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-14 11:37:12 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-15 02:18:47 +0100 |
commit | a3ce64a42720f3cc8f263968d9d58db05175e0f0 (patch) | |
tree | 91d707060b56009b07f01f87ece076889d8a78fb | |
parent | 9e6ccbc26be76868e96836f9f0a71041fa3346de (diff) |
i386/i386/fpu.h: remove register qualifiers
* i386/i386/fpu.h: Remove register qualifiers.
-rw-r--r-- | i386/i386/fpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386/fpu.h b/i386/i386/fpu.h index 2156187..7bc6438 100644 --- a/i386/i386/fpu.h +++ b/i386/i386/fpu.h @@ -87,7 +87,7 @@ #if NCPUS > 1 #define fpu_save_context(thread) \ { \ - register struct i386_fpsave_state *ifps; \ + struct i386_fpsave_state *ifps; \ ifps = (thread)->pcb->ims.ifps; \ if (ifps != 0 && !ifps->fp_valid) { \ /* registers are in FPU - save to memory */ \ |