[llvm] [Exegesis][RISCV] Add RISCV support for llvm-exegesis (PR #89047)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 19 05:36:16 PDT 2024
================
@@ -52,7 +52,7 @@ computeAliasingInstructions(const LLVMState &State, const Instruction *Instr,
continue;
if (OtherOpcode == Instr->Description.getOpcode())
continue;
- if (!State.getExegesisTarget().checkOpcodeSupported(
+ if (State.getExegesisTarget().checkOpcodeSupported(
----------------
AnastasiyaChernikova wrote:
No, that wasn't correct. We inverted the logic of the default function and the implementation for RISCV, which means we must remove the negation here too
https://github.com/llvm/llvm-project/pull/89047
More information about the llvm-commits
mailing list