Skip to content

Commit

Permalink
ppc64x: fix copy/paste issue #18
Browse files Browse the repository at this point in the history
  • Loading branch information
emmansun authored Oct 16, 2024
1 parent 28d100a commit 2f2e341
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base64_ppc64x.s
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ loop:
VAND X0, NIBBLE_MASK, X2
VPERM LUT_HI, LUT_HI, X1, X3
VPERM LUT_LO, LUT_LO, X2, X2
VAND(X3, X2, X2)
VAND X3, X2, X2
VCMPEQUBCC X2, ZERO, X3
BGE CR6, done

Expand Down Expand Up @@ -288,7 +288,7 @@ loop:
VAND X0, NIBBLE_MASK, X2
VPERM LUT_HI, LUT_HI, X1, X3
VPERM LUT_LO, LUT_LO, X2, X2
VAND(X3, X2, X2)
VAND X3, X2, X2
VCMPEQUBCC X2, ZERO, X3
BGE CR6, done

Expand Down

0 comments on commit 2f2e341

Please sign in to comment.