[llvm] [AMDGPU][MC] Disassembler warning for v_cmpx instructions (PR #128256)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 00:48:21 PST 2025
================
@@ -222,6 +223,9 @@ class MCDisassembler {
// Marked mutable because we cache it inside the disassembler, rather than
// having to pass it around as an argument through all the autogenerated code.
mutable raw_ostream *CommentStream = nullptr;
+
+ const std::string &getErrorOrWarningMsg() const { return ErrorOrWarningMsg; }
+ void setErrorOrWarningMsg(const std::string &Msg) { ErrorOrWarningMsg = Msg; }
----------------
arsenm wrote:
this probably isn't the right strategy for improving diagnostics
https://github.com/llvm/llvm-project/pull/128256
More information about the llvm-commits
mailing list