From 482408d725cf1f51ca4991d7e9c40aa9bf1d23f8 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Mon, 12 Aug 2024 17:07:55 -0700 Subject: [PATCH] Add GCOVR_EXCL_LINE to __builtin_unreachable --- LongestCommonPrefix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LongestCommonPrefix.h b/LongestCommonPrefix.h index da3c824..5490f97 100644 --- a/LongestCommonPrefix.h +++ b/LongestCommonPrefix.h @@ -125,7 +125,7 @@ __attribute__((target("default"))) inline int longestCommonPrefix(const uint8_t *ap, const uint8_t *bp, int cl) { if (!(cl >= 0)) { - __builtin_unreachable(); + __builtin_unreachable(); // GCOVR_EXCL_LINE } int i = 0;