llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: None (dlav-sc)
Changes
lldb-server didn't consider that LR instruction may be followed not only by BNE
instruction (takes 4 bytes), but by BNEZ too, which is a compressed instruction
(takes 2 bytes). As a result, after BNEZ lldb-server res
https://github.com/dlav-sc updated
https://github.com/llvm/llvm-project/pull/127505
>From 244a67ec597d74df382825fce475b269e27a18ef Mon Sep 17 00:00:00 2001
From: Daniil Avdeev
Date: Tue, 11 Feb 2025 16:38:53 +
Subject: [PATCH] [lldb][RISCV] fix LR/SC handling in lldb-server
lldb-server did
https://github.com/dlav-sc updated
https://github.com/llvm/llvm-project/pull/127505
>From 8691dc941dab6c04e980b0b84098d665833209ea Mon Sep 17 00:00:00 2001
From: Daniil Avdeev
Date: Tue, 11 Feb 2025 16:38:53 +
Subject: [PATCH] [lldb] fix LR/SC handling in lldb-server
lldb-server didn't con
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 4d7192a5ecabb36263a2cacd4e9243b958424805
2ab6cea7391b00ec865e6b7838452511320a2eee --e
https://github.com/dlav-sc created
https://github.com/llvm/llvm-project/pull/127505
lldb-server didn't consider that LR instruction may be followed not only by BNE
instruction (takes 4 bytes), but by BNEZ too, which is a compressed instruction
(takes 2 bytes). As a result, after BNEZ lldb-serv