not autoveced for some reason...

This commit is contained in:
Richard Thier 2024-10-11 02:39:48 +02:00
parent 1c41a4e106
commit 22ed78cd0e

View File

@ -93,7 +93,7 @@ union simap_ptr64 {
};
typedef union simap_ptr64 simap_ptr64;
// TODO: We can possibly hand-optimise this with intrinsics maybe - but I hope autovectorization
// TODO: We can possibly hand-optimise this with intrinsics maybe - but I hope autovectorization (does not seem to happen???)
static inline SM_ALWAYS_INLINE auint64 *make_tipp(auint64 *tip, auint64 prefix, auint64 *end) {
while((tip < end) && (*tip != prefix)) ++tip;
return tip;