diff options
author | Rémi Denis-Courmont <remi@remlab.net> | 2024-08-02 18:07:04 +0300 |
---|---|---|
committer | Rémi Denis-Courmont <remi@remlab.net> | 2024-08-02 21:24:01 +0300 |
commit | de7f999481b1928d81bc997fc63ff8ff17e79383 (patch) | |
tree | 7e72fa1df102da465eee878401da0ea35136caa0 | |
parent | 677f28b310ac8cbf96e3a02865c2aff49c6950ff (diff) | |
download | ffmpeg-de7f999481b1928d81bc997fc63ff8ff17e79383.tar.gz |
lavc/videodsp: work-around LLVM-as
For some reason, it can't handle the normal syntax for an address operand
without an offset, so add a dummy zero offset.
-rw-r--r-- | libavcodec/riscv/videodsp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/riscv/videodsp.S b/libavcodec/riscv/videodsp.S index 72bf70ec52..011b85ffc4 100644 --- a/libavcodec/riscv/videodsp.S +++ b/libavcodec/riscv/videodsp.S @@ -25,7 +25,7 @@ func ff_prefetch_rv_zicbop, zicbop 1: addi a2, a2, -1 - prefetch.r (a0) + prefetch.r 0(a0) add a0, a0, a1 bnez a2, 1b |