Skip to content

Commit

Permalink
libbacktrace: use __has_attribute for fallthrough
Browse files Browse the repository at this point in the history
Also convert some FALLTHROUGH comments to ATTRIBUTE_FALLTHROUGH.

	* internal.h: Use __has_attribute to check for fallthrough
	attribute.
	* elf.c (elf_zstd_decompress): Use ATTRIBUTE_FALLTHROUGH rather
	than a FALLTHROUGH comment.
  • Loading branch information
ianlancetaylor committed Jul 18, 2024
1 parent f37b51d commit 7e2b7da
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
14 changes: 7 additions & 7 deletions elf.c
Original file line number Diff line number Diff line change
Expand Up @@ -4848,25 +4848,25 @@ elf_zstd_decompress (const unsigned char *pin, size_t sin,
{
case 8:
*pout++ = *plit++;
/* FALLTHROUGH */
ATTRIBUTE_FALLTHROUGH;
case 7:
*pout++ = *plit++;
/* FALLTHROUGH */
ATTRIBUTE_FALLTHROUGH;
case 6:
*pout++ = *plit++;
/* FALLTHROUGH */
ATTRIBUTE_FALLTHROUGH;
case 5:
*pout++ = *plit++;
/* FALLTHROUGH */
ATTRIBUTE_FALLTHROUGH;
case 4:
*pout++ = *plit++;
/* FALLTHROUGH */
ATTRIBUTE_FALLTHROUGH;
case 3:
*pout++ = *plit++;
/* FALLTHROUGH */
ATTRIBUTE_FALLTHROUGH;
case 2:
*pout++ = *plit++;
/* FALLTHROUGH */
ATTRIBUTE_FALLTHROUGH;
case 1:
*pout++ = *plit++;
break;
Expand Down
5 changes: 5 additions & 0 deletions internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ POSSIBILITY OF SUCH DAMAGE. */
# endif
#endif

#ifdef __has_attribute
# if __has_attribute(fallthrough)
# define ATTRIBUTE_FALLTHROUGH __attribute__ ((fallthrough))
# endif
#endif
#ifndef ATTRIBUTE_FALLTHROUGH
# if (GCC_VERSION >= 7000)
# define ATTRIBUTE_FALLTHROUGH __attribute__ ((__fallthrough__))
Expand Down

0 comments on commit 7e2b7da

Please sign in to comment.