aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorTor Egge <tegge@vespa.ai>2024-05-20 18:10:58 +0200
committerTor Egge <tegge@vespa.ai>2024-05-20 18:11:35 +0200
commit35dcb957aee28ea57b03fe9dfacb791f47120ae5 (patch)
tree3e5d2312b0fd38fb6db799bf51d65b9dd4dc101d /vespalib
parent54df6d75fbffd3f7d875fde2b2580647cb949ae8 (diff)
Use __attribute__((noinline)) instead of glibc macro __attribute_noinline__
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/hwaccelrated/private_helpers.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/hwaccelrated/private_helpers.hpp b/vespalib/src/vespa/vespalib/hwaccelrated/private_helpers.hpp
index fbcf3dff526..236d2a135a5 100644
--- a/vespalib/src/vespa/vespalib/hwaccelrated/private_helpers.hpp
+++ b/vespalib/src/vespa/vespalib/hwaccelrated/private_helpers.hpp
@@ -123,7 +123,7 @@ convert_bfloat16_to_float(const uint16_t *src, float *dest, size_t sz) noexcept
template<typename ACCUM = uint32_t>
ACCUM
-multiplyAddT(const int8_t *a, const int8_t *b, size_t sz) noexcept __attribute_noinline__;
+multiplyAddT(const int8_t *a, const int8_t *b, size_t sz) noexcept __attribute__((noinline));
template<typename ACCUM>
ACCUM