]> Git Repo - J-linux.git/commitdiff
x86/math-emu: Fix function cast warnings
authorArnd Bergmann <[email protected]>
Thu, 4 Apr 2024 16:17:24 +0000 (18:17 +0200)
committerBorislav Petkov (AMD) <[email protected]>
Mon, 8 Apr 2024 14:06:22 +0000 (16:06 +0200)
clang-16 warns about casting function pointers with incompatible
prototypes. The x86 math-emu code does this in a number of places
to call some trivial functions that need no arguments:

  arch/x86/math-emu/fpu_etc.c:124:14: error: cast from 'void (*)(void)' to 'FUNC_ST0' \
    (aka 'void (*)(struct fpu__reg *, unsigned char)') converts to incompatible function \
    type [-Werror,-Wcast-function-type-strict]
    124 |         fchs, fabs, (FUNC_ST0) FPU_illegal, (FUNC_ST0) FPU_illegal,
        |                     ^~~~~~~~~~~~~~~~~~~~~~

  arch/x86/math-emu/fpu_trig.c:1634:19: error: cast from 'void (*)(void)' to 'FUNC_ST0' \
    (aka 'void (*)(struct fpu__reg *, unsigned char)') converts to incompatible function \
    type [-Werror,-Wcast-function-type-strict]
   1634 |         fxtract, fprem1, (FUNC_ST0) fdecstp, (FUNC_ST0) fincstp
        |                          ^~~~~~~~~~~~~~~~~~

  arch/x86/math-emu/reg_constant.c:112:53: error: cast from 'void (*)(void)' to 'FUNC_RC' \
  (aka 'void (*)(int)') converts to incompatible function \
  type [-Werror,-Wcast-function-type-strict]
    112 |         fld1, fldl2t, fldl2e, fldpi, fldlg2, fldln2, fldz, (FUNC_RC) FPU_illegal

Change the fdecstp() and fincstp() functions to actually have the correct
prototypes based on the caller, and add wrappers around FPU_illegal() for
adapting those.

Signed-off-by: Arnd Bergmann <[email protected]>
Signed-off-by: Borislav Petkov (AMD) <[email protected]>
Link: https://lore.kernel.org/lkml/[email protected]
arch/x86/math-emu/fpu_etc.c
arch/x86/math-emu/fpu_trig.c
arch/x86/math-emu/reg_constant.c

index 1b118fd93140931e515898e51bd316a50dab97cf..39423ec409e18863dd20a207ae548facc2ccb6d1 100644 (file)
@@ -120,9 +120,14 @@ static void fxam(FPU_REG *st0_ptr, u_char st0tag)
        setcc(c);
 }
 
+static void FPU_ST0_illegal(FPU_REG *st0_ptr, u_char st0_tag)
+{
+       FPU_illegal();
+}
+
 static FUNC_ST0 const fp_etc_table[] = {
-       fchs, fabs, (FUNC_ST0) FPU_illegal, (FUNC_ST0) FPU_illegal,
-       ftst_, fxam, (FUNC_ST0) FPU_illegal, (FUNC_ST0) FPU_illegal
+       fchs, fabs, FPU_ST0_illegal, FPU_ST0_illegal,
+       ftst_, fxam, FPU_ST0_illegal, FPU_ST0_illegal,
 };
 
 void FPU_etc(void)
index 990d847ae902c6e032462e55914dbc680a3959bd..85daf98c81c3eaee75a978c2a0f0244ad2cabeff 100644 (file)
@@ -433,13 +433,13 @@ static void fxtract(FPU_REG *st0_ptr, u_char st0_tag)
 #endif /* PARANOID */
 }
 
-static void fdecstp(void)
+static void fdecstp(FPU_REG *st0_ptr, u_char st0_tag)
 {
        clear_C1();
        top--;
 }
 
-static void fincstp(void)
+static void fincstp(FPU_REG *st0_ptr, u_char st0_tag)
 {
        clear_C1();
        top++;
@@ -1631,7 +1631,7 @@ static void fscale(FPU_REG *st0_ptr, u_char st0_tag)
 
 static FUNC_ST0 const trig_table_a[] = {
        f2xm1, fyl2x, fptan, fpatan,
-       fxtract, fprem1, (FUNC_ST0) fdecstp, (FUNC_ST0) fincstp
+       fxtract, fprem1, fdecstp, fincstp,
 };
 
 void FPU_triga(void)
index 742619e94bdf281a0dc19a36b1fe2b5a63a19a7b..003a0b2753e68b56a5a72272e7be6035db14445c 100644 (file)
@@ -108,8 +108,13 @@ static void fldz(int rc)
 
 typedef void (*FUNC_RC) (int);
 
+static void FPU_RC_illegal(int unused)
+{
+       FPU_illegal();
+}
+
 static FUNC_RC constants_table[] = {
-       fld1, fldl2t, fldl2e, fldpi, fldlg2, fldln2, fldz, (FUNC_RC) FPU_illegal
+       fld1, fldl2t, fldl2e, fldpi, fldlg2, fldln2, fldz, FPU_RC_illegal
 };
 
 void fconst(void)
This page took 0.056076 seconds and 4 git commands to generate.