start with changes unlikely to have an effect

This commit is contained in:
Martin Kroeker 2022-06-19 16:49:32 +02:00 committed by GitHub
parent 77ef635096
commit 62a21e36e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -84,6 +84,7 @@ static void nrm2_compute(BLASLONG n, FLOAT *x, BLASLONG inc_x,
" fmov "REGZERO", xzr \n" " fmov "REGZERO", xzr \n"
" fmov "REGONE", #1.0 \n" " fmov "REGONE", #1.0 \n"
" fmov "REGINF", x6 \n" " fmov "REGINF", x6 \n"
" fmov x6, 1.0 \n"
" lsl "INC_X", "INC_X", #"INC_SHIFT" \n" " lsl "INC_X", "INC_X", #"INC_SHIFT" \n"
" mov "J", "N" \n" " mov "J", "N" \n"
" cmp "J", xzr \n" " cmp "J", xzr \n"
@ -321,7 +322,7 @@ static void nrm2_compute(BLASLONG n, FLOAT *x, BLASLONG inc_x,
: "cc", : "cc",
"memory", "memory",
"x0", "x1", "x2", "x3", "x4", "x5", "x6", "x0", "x1", "x2", "x3", "x4", "x5", "x6",
"d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", REGINF "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9"
); );
} }