[PATCH] D157234: [SPARC][IAS] Add support for the full set of CAS instructions
Sergei Barannikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 6 13:33:32 PDT 2023
barannikov88 added a comment.
Missing disassembler tests.
================
Comment at: llvm/lib/Target/Sparc/SparcInstrInfo.td:55
+// HasLeonCASA - This is true when the target processor supports the Leon CASA
// instruction
def HasLeonCASA : Predicate<"Subtarget->hasLeonCasa()">;
----------------
================
Comment at: llvm/lib/Target/Sparc/SparcInstrInfo.td:59
+// HasCAS - This is true when the target processor supports CASA instruction.
+def HasCAS : Predicate<"Subtarget->hasLeonCasa() || Subtarget->isV9()">;
+
----------------
HasCASA?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157234/new/
https://reviews.llvm.org/D157234
More information about the llvm-commits
mailing list