From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 497D84C772 for ; Fri, 2 Aug 2024 15:08:07 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3A32768D885; Fri, 2 Aug 2024 18:08:05 +0300 (EEST) Received: from ursule.remlab.net (vps-a2bccee9.vps.ovh.net [51.75.19.47]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1680668D3E5 for ; Fri, 2 Aug 2024 18:07:59 +0300 (EEST) Received: from basile.remlab.net (localhost [IPv6:::1]) by ursule.remlab.net (Postfix) with ESMTP id 39189C006E for ; Fri, 2 Aug 2024 18:07:58 +0300 (EEST) From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= To: ffmpeg-devel@ffmpeg.org Date: Fri, 2 Aug 2024 18:07:58 +0300 Message-ID: <20240802150758.3943-1-remi@remlab.net> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] lavc/videodsp: work-around LLVM-as X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: For some reason, it can't handle the normal syntax for an address operand without an offset, so add a dummy zero offset. --- libavcodec/riscv/videodsp.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.45.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".