[Lldb-commits] [PATCH] D136578: [LLDB] [LoongArch] Add minimal LoongArch support
Tiezhu Yang via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 24 02:45:31 PDT 2022
seehearfeel added inline comments.
================
Comment at: lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_loongarch64.h:26
+public:
+ enum { GPRegSet = 0, FPRegSet };
+
----------------
tschuett wrote:
> Firstly, I prefer `ènum class`. Second, it is unused?
Now, GPRegSet and FPRegSet are not used,
I will remove them and update the diff in this commit,
and use
enum class { GPRegSet = 0, FPRegSet };
in the later patch, thank you.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D136578/new/
https://reviews.llvm.org/D136578
More information about the lldb-commits
mailing list