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> {
211211 {
212212 return _mm256_castps_si256 (v);
213213 }
214- static bool all_false (opmask_t k){
214+ static bool all_false (opmask_t k)
215+ {
215216 return k == 0 ;
216217 }
217218 static reg_t reverse (reg_t ymm)
@@ -399,7 +400,8 @@ struct ymm_vector<uint32_t> {
399400 {
400401 return v;
401402 }
402- static bool all_false (opmask_t k){
403+ static bool all_false (opmask_t k)
404+ {
403405 return k == 0 ;
404406 }
405407 static reg_t reverse (reg_t ymm)
@@ -587,7 +589,8 @@ struct ymm_vector<int32_t> {
587589 {
588590 return v;
589591 }
590- static bool all_false (opmask_t k){
592+ static bool all_false (opmask_t k)
593+ {
591594 return k == 0 ;
592595 }
593596 static reg_t reverse (reg_t ymm)
You can’t perform that action at this time.
0 commit comments