diff options
author | andrew <andrew@FreeBSD.org> | 2015-07-09 21:02:40 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2015-07-09 21:02:40 +0000 |
commit | 6a4a0db965117b7d69bde849601dd6d2160a34e0 (patch) | |
tree | 29aad34bb2b9a0b6b09c752e53032dcb4cd3bd4b /sys/libkern/arm/ldivmod_helper.c | |
parent | b85d394d0e119fc2aa8a4351fda5595f0c1b5d2e (diff) | |
download | FreeBSD-src-6a4a0db965117b7d69bde849601dd6d2160a34e0.zip FreeBSD-src-6a4a0db965117b7d69bde849601dd6d2160a34e0.tar.gz |
Remove checks for __ARM_EABI__, we only build for EABI now.
Sponsored by: ABT Systems Ltd
Diffstat (limited to 'sys/libkern/arm/ldivmod_helper.c')
-rw-r--r-- | sys/libkern/arm/ldivmod_helper.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/libkern/arm/ldivmod_helper.c b/sys/libkern/arm/ldivmod_helper.c index 9061ae4..f3c02b2 100644 --- a/sys/libkern/arm/ldivmod_helper.c +++ b/sys/libkern/arm/ldivmod_helper.c @@ -28,7 +28,6 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -#ifdef __ARM_EABI__ #include <libkern/quad.h> /* @@ -48,6 +47,3 @@ __kern_ldivmod(long long n, long long m, long long *rem) return q; } - -#endif - |