aboutsummaryrefslogtreecommitdiff
path: root/libgcc
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2023-11-21 10:49:51 +0100
committerJakub Jelinek <jakub@redhat.com>2023-11-21 10:49:51 +0100
commit69813540e300d249ae7cec5849c8a11e22519328 (patch)
tree5f5530c07333a5fd003fc6c1eaeea6303f8cc4cd /libgcc
parent1fcfd224ff67afd08ea5aa66a8bd687bb21798b2 (diff)
downloadgcc-69813540e300d249ae7cec5849c8a11e22519328.zip
gcc-69813540e300d249ae7cec5849c8a11e22519328.tar.gz
gcc-69813540e300d249ae7cec5849c8a11e22519328.tar.bz2
gcov: Formatting fixes
I've noticed the r14-5579 commit introduced some formatting issues, this patch fixes what I saw. 2023-11-21 Jakub Jelinek <jakub@redhat.com> gcc/ * tree-profile.cc (gen_counter_update, tree_profiling): Formatting fixes. libgcc/ * libgcov.h (GCOV_SUPPORTS_ATOMIC): Formatting fixes.
Diffstat (limited to 'libgcc')
-rw-r--r--libgcc/libgcov.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgcc/libgcov.h b/libgcc/libgcov.h
index d04c070..f5959a8 100644
--- a/libgcc/libgcov.h
+++ b/libgcc/libgcov.h
@@ -96,9 +96,9 @@ typedef unsigned gcov_type_unsigned __attribute__ ((mode (QI)));
#endif
/* Detect whether target can support atomic update of profilers. */
-#if (__SIZEOF_LONG_LONG__ == 4 && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4) || \
- (__SIZEOF_LONG_LONG__ == 8 && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8) || \
- defined (__LIBGCC_HAVE_LIBATOMIC)
+#if (__SIZEOF_LONG_LONG__ == 4 && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4) \
+ || (__SIZEOF_LONG_LONG__ == 8 && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8) \
+ || defined (__LIBGCC_HAVE_LIBATOMIC)
#define GCOV_SUPPORTS_ATOMIC 1
#else
#define GCOV_SUPPORTS_ATOMIC 0