From fc0dde06da0e173ec9edd94bc4df8732dfcb5804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20M=C3=BCllner?= Date: Wed, 18 Dec 2024 21:38:35 +0100 Subject: [PATCH] c-api: Remove trailing whitespace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new CI/CD steps complain about a trailing whitespace. Let's remove that. Signed-off-by: Christoph Müllner --- src/c-api.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c-api.adoc b/src/c-api.adoc index 183a424..1c8219b 100644 --- a/src/c-api.adoc +++ b/src/c-api.adoc @@ -881,7 +881,7 @@ All `length` fields should be initialized to zero if `__init_riscv_feature_bits` NOTE: To detect failure in the `__init_riscv_feature_bits` function, it is recommended to check that `__riscv_feature_bits.length` is non-zero. -Each queryable extension must have an associated `groupid` and `bitmask` that indicates its position within the features array. +Each queryable extension must have an associated `groupid` and `bitmask` that indicates its position within the features array. > For example, the zba extension is represented by `groupid`: 0 and `bitmask`: `1ULL << 27`. Users can check if the zba extension is enabled using: `__riscv_feature_bits.features[0] & (1ULL << 27)`.