Skip to content

Commit 4938faa

Browse files
committed
core.IdenticalExpr clang501 checker
1 parent 9fa9863 commit 4938faa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

kernel/x86_64/dtrmm_kernel_4x8_haswell.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -777,9 +777,9 @@ int CNAME(BLASLONG bm,BLASLONG bn,BLASLONG bk,FLOAT alpha,FLOAT* ba,FLOAT* bb,FL
777777
res3_2 = 0;
778778
res3_3 = 0;
779779

780-
temp = backwards ? bk-off :
781-
left ? off + 4 : // number of values in A
782-
off + 4; // number of values in B
780+
temp = backwards ? bk-off : off + 4;
781+
/* left ? off + 4 : // number of values in A
782+
off + 4; // number of values in B */
783783

784784
for (k=0; k<temp; k++)
785785
{
@@ -857,9 +857,9 @@ int CNAME(BLASLONG bm,BLASLONG bn,BLASLONG bk,FLOAT alpha,FLOAT* ba,FLOAT* bb,FL
857857
C3[3] = res3_3;
858858

859859
if (!backwards) {
860-
temp = bk-off;
861-
temp = left ? temp - 4 : // number of values in A
862-
temp - 4; // number of values in B
860+
temp = bk-off - 4;
861+
/* temp = left ? temp - 4 : // number of values in A
862+
temp - 4; // number of values in B */
863863

864864
ptrba += temp*4; // number of values in A
865865
ptrbb += temp*4; // number of values in B

0 commit comments

Comments
 (0)