File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,8 @@ struct ymm_vector<float> {
211
211
{
212
212
return _mm256_castps_si256 (v);
213
213
}
214
- static bool all_false (opmask_t k){
214
+ static bool all_false (opmask_t k)
215
+ {
215
216
return k == 0 ;
216
217
}
217
218
static reg_t reverse (reg_t ymm)
@@ -399,7 +400,8 @@ struct ymm_vector<uint32_t> {
399
400
{
400
401
return v;
401
402
}
402
- static bool all_false (opmask_t k){
403
+ static bool all_false (opmask_t k)
404
+ {
403
405
return k == 0 ;
404
406
}
405
407
static reg_t reverse (reg_t ymm)
@@ -587,7 +589,8 @@ struct ymm_vector<int32_t> {
587
589
{
588
590
return v;
589
591
}
590
- static bool all_false (opmask_t k){
592
+ static bool all_false (opmask_t k)
593
+ {
591
594
return k == 0 ;
592
595
}
593
596
static reg_t reverse (reg_t ymm)
You can’t perform that action at this time.
0 commit comments