core.IdenticalExpr clang501 checker
This commit is contained in:
parent
9fa986337d
commit
4938faa822
|
@ -777,9 +777,9 @@ int CNAME(BLASLONG bm,BLASLONG bn,BLASLONG bk,FLOAT alpha,FLOAT* ba,FLOAT* bb,FL
|
||||||
res3_2 = 0;
|
res3_2 = 0;
|
||||||
res3_3 = 0;
|
res3_3 = 0;
|
||||||
|
|
||||||
temp = backwards ? bk-off :
|
temp = backwards ? bk-off : off + 4;
|
||||||
left ? off + 4 : // number of values in A
|
/* left ? off + 4 : // number of values in A
|
||||||
off + 4; // number of values in B
|
off + 4; // number of values in B */
|
||||||
|
|
||||||
for (k=0; k<temp; k++)
|
for (k=0; k<temp; k++)
|
||||||
{
|
{
|
||||||
|
@ -857,9 +857,9 @@ int CNAME(BLASLONG bm,BLASLONG bn,BLASLONG bk,FLOAT alpha,FLOAT* ba,FLOAT* bb,FL
|
||||||
C3[3] = res3_3;
|
C3[3] = res3_3;
|
||||||
|
|
||||||
if (!backwards) {
|
if (!backwards) {
|
||||||
temp = bk-off;
|
temp = bk-off - 4;
|
||||||
temp = left ? temp - 4 : // number of values in A
|
/* temp = left ? temp - 4 : // number of values in A
|
||||||
temp - 4; // number of values in B
|
temp - 4; // number of values in B */
|
||||||
|
|
||||||
ptrba += temp*4; // number of values in A
|
ptrba += temp*4; // number of values in A
|
||||||
ptrbb += temp*4; // number of values in B
|
ptrbb += temp*4; // number of values in B
|
||||||
|
|
Loading…
Reference in New Issue