Skip to content

Commit

Permalink
neon64: apply BASE64_FORCE_INLINE macro
Browse files Browse the repository at this point in the history
  • Loading branch information
aklomp committed Feb 29, 2024
1 parent a4e2252 commit caf6eb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/arch/neon64/codec.c
Expand Up @@ -22,7 +22,7 @@
#define BASE64_NEON64_USE_ASM
#endif

static inline uint8x16x4_t
static BASE64_FORCE_INLINE uint8x16x4_t
load_64byte_table (const uint8_t *p)
{
#ifdef BASE64_NEON64_USE_ASM
Expand Down
2 changes: 1 addition & 1 deletion lib/arch/neon64/enc_loop.c
@@ -1,4 +1,4 @@
static inline void
static BASE64_FORCE_INLINE void
enc_loop_neon64_inner (const uint8_t **s, uint8_t **o, const uint8x16x4_t tbl_enc)
{
// Load 48 bytes and deinterleave:
Expand Down
2 changes: 1 addition & 1 deletion lib/arch/neon64/enc_reshuffle.c
@@ -1,4 +1,4 @@
static inline uint8x16x4_t
static BASE64_FORCE_INLINE uint8x16x4_t
enc_reshuffle (const uint8x16x3_t in)
{
uint8x16x4_t out;
Expand Down

0 comments on commit caf6eb1

Please sign in to comment.