diff options
author | Helge Deller <deller@gmx.de> | 2023-07-03 18:38:02 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2023-07-03 18:56:03 +0200 |
commit | de53f3f7a9ffb8a24c3382aa41e24666c28f0368 (patch) | |
tree | f4bc266ce6b94af5e5bb0471a53e63bee5d2fe61 /arch | |
parent | 28e113f89f33e0f1566045d2adc017e16a9bffb4 (diff) |
parisc: math-emu: Avoid compiler warnings with W=1
The math-emu code is a snapshot from the HP-UX kernel. They've
been modified as little as possible.
See arch/parisc/math-emu/README.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/parisc/math-emu/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/parisc/math-emu/Makefile b/arch/parisc/math-emu/Makefile index 3747a0cbd3b8..7b64740e150a 100644 --- a/arch/parisc/math-emu/Makefile +++ b/arch/parisc/math-emu/Makefile @@ -6,7 +6,8 @@ # See arch/parisc/math-emu/README ccflags-y := -Wno-parentheses -Wno-implicit-function-declaration \ -Wno-uninitialized -Wno-strict-prototypes -Wno-return-type \ - -Wno-implicit-int + -Wno-implicit-int -Wno-missing-prototypes -Wno-missing-declarations \ + -Wno-old-style-definition -Wno-unused-but-set-variable obj-y := frnd.o driver.o decode_exc.o fpudispatch.o denormal.o \ dfmpy.o sfmpy.o sfsqrt.o dfsqrt.o dfadd.o fmpyfadd.o \ |