[llvm] [Exegesis][RISCV] Add RISCV support for llvm-exegesis (PR #89047)
Min-Yih Hsu via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 30 16:04:43 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(
----------------
mshockwave wrote:
What is the difference between `ExegesisTarget::checkOpcodeSupported` and `ExegesisTarget::isOpcodeAvailable`? From your implementation I feel like they're basically identical.
https://github.com/llvm/llvm-project/pull/89047
More information about the llvm-commits
mailing list