ObjFW  Diff

Differences From Artifact [3a3536d48e]:

To Artifact [9130b8518c]:


571
572
573
574
575
576
577


578
579
580

581
582
583
584
585
586
587
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590







+
+



+







	AC_MSG_ERROR(
		[Floating point implementation does not conform to IEEE 754!])])

case "$host_cpu" in
	arm* | earm*)
		AC_MSG_CHECKING(if VFP2 or above is available)
		AC_TRY_COMPILE([], [
			#if !defined(__arm64__) && !defined(__aarch64__) && \
			    !defined(__ARM64_ARCH_8__)
			__asm__ __volatile__ (
			    "fstmfdd sp!, {d0-d7}"
			);
			#endif
		], [
			AC_DEFINE(HAVE_VFP2, 1, [Whether we have VFP2 or above])
			AC_MSG_RESULT(yes)
		], [
			AC_MSG_RESULT(no)
		])
		;;