aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosmin Truta <ctruta@gmail.com>2024-01-29 20:36:36 +0200
committerCosmin Truta <ctruta@gmail.com>2024-01-29 20:36:36 +0200
commit31439b6b8dc2d2760862a47769889d82793d282f (patch)
treec61b142b7737dfec75afdd0108ae54d9256d4cdd
parent537c66660ef32e3397b08428666decaf060ff30f (diff)
downloadlibpng-31439b6b8dc2d2760862a47769889d82793d282f.tar.gz
chore: Fix whitespace in pngpriv.h
-rw-r--r--pngpriv.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/pngpriv.h b/pngpriv.h
index 3a3e9d356..9bfdb7134 100644
--- a/pngpriv.h
+++ b/pngpriv.h
@@ -36,7 +36,7 @@
* still required (as of 2011-05-02.)
*/
#ifndef _POSIX_SOURCE
-# define _POSIX_SOURCE 1 /* Just the POSIX 1003.1 and C89 APIs */
+# define _POSIX_SOURCE 1 /* Just the POSIX 1003.1 and C89 APIs */
#endif
#ifndef PNG_VERSION_INFO_ONLY
@@ -190,7 +190,8 @@
#endif /* PNG_ARM_NEON_OPT > 0 */
#ifndef PNG_MIPS_MSA_OPT
-# if defined(__mips_msa) && (__mips_isa_rev >= 5) && defined(PNG_ALIGNED_MEMORY_SUPPORTED)
+# if defined(__mips_msa) && (__mips_isa_rev >= 5) && \
+ defined(PNG_ALIGNED_MEMORY_SUPPORTED)
# define PNG_MIPS_MSA_OPT 2
# else
# define PNG_MIPS_MSA_OPT 0
@@ -199,7 +200,8 @@
#ifndef PNG_MIPS_MMI_OPT
# ifdef PNG_MIPS_MMI
-# if defined(__mips_loongson_mmi) && (_MIPS_SIM == _ABI64) && defined(PNG_ALIGNED_MEMORY_SUPPORTED)
+# if defined(__mips_loongson_mmi) && (_MIPS_SIM == _ABI64) && \
+ defined(PNG_ALIGNED_MEMORY_SUPPORTED)
# define PNG_MIPS_MMI_OPT 1
# else
# define PNG_MIPS_MMI_OPT 0
@@ -231,7 +233,7 @@
* enable SSE optimizations. This means that these optimizations will
* be off by default. See contrib/intel for more details.
*/
-# if defined(__SSE4_1__) || defined(__AVX__) || defined(__SSSE3__) || \
+# if defined(__SSE4_1__) || defined(__AVX__) || defined(__SSSE3__) || \
defined(__SSE2__) || defined(_M_X64) || defined(_M_AMD64) || \
(defined(_M_IX86_FP) && _M_IX86_FP >= 2)
# define PNG_INTEL_SSE_OPT 1