504abf4b34
- if gcc/clang is used the C functions that use long long can be inlined to get better performance (yes, it makes difference)
19 lines
232 B
Makefile
19 lines
232 B
Makefile
# int64 sources
|
|
.PATH: ${.CURDIR}/arch/${ARCH}/int64
|
|
|
|
SRCS+= \
|
|
add64.S \
|
|
add64u.S \
|
|
bsr64.S \
|
|
cmp64.S \
|
|
cv64u.S \
|
|
cvu64.S \
|
|
diff64.S \
|
|
div64.c \
|
|
div64u.S \
|
|
ex64.S \
|
|
make64.S \
|
|
mul64.c \
|
|
mul64u.S \
|
|
sub64.S \
|
|
sub64u.S
|