mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-04-08 12:02:33 +02:00
Verify that edge cases produce proper results, and some more. [npitre@baylibre.com: avoid undefined shift value] Link: https://lkml.kernel.org/r/7rrs9pn1-n266-3013-9q6n-1osp8r8s0rrn@syhkavp.arg Link: https://lkml.kernel.org/r/20240707190648.1982714-3-nico@fluxnic.net Signed-off-by: Nicolas Pitre <npitre@baylibre.com> Reviewed-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com> Cc: Biju Das <biju.das.jz@bp.renesas.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
11 lines
390 B
Makefile
11 lines
390 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-y += div64.o gcd.o lcm.o int_log.o int_pow.o int_sqrt.o reciprocal_div.o
|
|
|
|
obj-$(CONFIG_CORDIC) += cordic.o
|
|
obj-$(CONFIG_PRIME_NUMBERS) += prime_numbers.o
|
|
obj-$(CONFIG_RATIONAL) += rational.o
|
|
|
|
obj-$(CONFIG_TEST_DIV64) += test_div64.o
|
|
obj-$(CONFIG_TEST_MULDIV64) += test_mul_u64_u64_div_u64.o
|
|
obj-$(CONFIG_RATIONAL_KUNIT_TEST) += rational-test.o
|