Skip to content

Commit 84e1666

Browse files
Raghuveer Devulapallisterrettm2
authored andcommitted
format fixes
1 parent 6b0b37b commit 84e1666

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/avx512-64bit-common.h

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)