diff options
| author | Josh Bleecher Snyder <josharian@gmail.com> | 2020-02-04 14:53:46 -0800 |
|---|---|---|
| committer | Josh Bleecher Snyder <josharian@gmail.com> | 2020-02-04 23:15:01 +0000 |
| commit | e3f2e9ac4e1ab99e1ebd0bf2a6bd3898633873b1 (patch) | |
| tree | 9b22c33e4337b7789eab254cd0afbc45f4da175b /src/internal/bytealg | |
| parent | a744be42f9427a3b20e7e179e4b9831dbcf27f4c (diff) | |
| download | go-e3f2e9ac4e1ab99e1ebd0bf2a6bd3898633873b1.tar.xz | |
internal/bytealg: fix riscv64 offset names
Vet caught that these were incorrect.
Updates #37022
Change-Id: I7b5cd8032ea95eb8e0729f6a4f386aec613c71d8
Reviewed-on: https://go-review.googlesource.com/c/go/+/217777
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/internal/bytealg')
| -rw-r--r-- | src/internal/bytealg/indexbyte_riscv64.s | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/internal/bytealg/indexbyte_riscv64.s b/src/internal/bytealg/indexbyte_riscv64.s index 087be86e44..156c303699 100644 --- a/src/internal/bytealg/indexbyte_riscv64.s +++ b/src/internal/bytealg/indexbyte_riscv64.s @@ -6,8 +6,8 @@ #include "textflag.h" TEXT ·IndexByte(SB),NOSPLIT,$0-40 - MOV s+0(FP), A1 - MOV s_len+8(FP), A2 + MOV b_base+0(FP), A1 + MOV b_len+8(FP), A2 MOVBU c+24(FP), A3 // byte to find MOV A1, A4 // store base for later ADD A1, A2 // end @@ -29,8 +29,8 @@ notfound: RET TEXT ·IndexByteString(SB),NOSPLIT,$0-32 - MOV p+0(FP), A1 - MOV b_len+8(FP), A2 + MOV s_base+0(FP), A1 + MOV s_len+8(FP), A2 MOVBU c+16(FP), A3 // byte to find MOV A1, A4 // store base for later ADD A1, A2 // end |
