[PATCH] D78129: Add Marvell ThunderX3T110 support

Joel Jones via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 6 15:20:00 PDT 2020


joelkevinjones added a comment.

I don't think it makes sense to combine two unrelated things SVE and PA support into a combined thing. Since we already have UnsupportedFeatures in every sub-target .td file, I think it would be better to instead have:

  def PAUnsupported : AArch64Unsupported {
    let F = [HasPA];
  }

and modify each .td file to have

  list<Predicate> UnsupportedFeatures = !listconcat(SVEUnsupported.F, PAUnsupported.F);


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D78129/new/

https://reviews.llvm.org/D78129





More information about the llvm-commits mailing list