File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,9 @@ static inline bool vector8_has(const Vector8 v, const uint8 c);
77
77
static inline bool vector8_has_zero (const Vector8 v );
78
78
static inline bool vector8_has_le (const Vector8 v , const uint8 c );
79
79
static inline bool vector8_is_highbit_set (const Vector8 v );
80
+ #ifndef USE_NO_SIMD
81
+ static inline bool vector32_is_highbit_set (const Vector32 v );
82
+ #endif
80
83
81
84
/* arithmetic operations */
82
85
static inline Vector8 vector8_or (const Vector8 v1 , const Vector8 v2 );
@@ -88,7 +91,7 @@ static inline Vector8 vector8_ssub(const Vector8 v1, const Vector8 v2);
88
91
/*
89
92
* comparisons between vectors
90
93
*
91
- * Note: These return a vector rather than booloan , which is why we don't
94
+ * Note: These return a vector rather than boolean , which is why we don't
92
95
* have non-SIMD implementations.
93
96
*/
94
97
#ifndef USE_NO_SIMD
@@ -275,7 +278,7 @@ vector8_is_highbit_set(const Vector8 v)
275
278
}
276
279
277
280
/*
278
- * Exactly like vector32_is_highbit_set except for the input type, so it
281
+ * Exactly like vector8_is_highbit_set except for the input type, so it
279
282
* looks at each byte separately.
280
283
*
281
284
* XXX x86 uses the same underlying type for 8-bit, 16-bit, and 32-bit
You can’t perform that action at this time.
0 commit comments