[PATCH] D63236: [mips] Add empty scheduler info and `NoItinerary` to the `MipsAsmPseudoInst`

Simon Atanasyan via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Jun 16 14:29:53 PDT 2019


atanasyan updated this revision to Diff 204966.
atanasyan edited the summary of this revision.
atanasyan added a comment.

- Use hasNoSchedulingInfo flag


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D63236

Files:
  llvm/lib/Target/Mips/MipsInstrFormats.td


Index: llvm/lib/Target/Mips/MipsInstrFormats.td
===================================================================
--- llvm/lib/Target/Mips/MipsInstrFormats.td
+++ llvm/lib/Target/Mips/MipsInstrFormats.td
@@ -145,6 +145,7 @@
 class MipsAsmPseudoInst<dag outs, dag ins, string asmstr>:
   MipsInst<outs, ins, asmstr, [], IIPseudo, Pseudo> {
   let isPseudo = 1;
+  let hasNoSchedulingInfo = 1;
   let Pattern = [];
 }
 //===----------------------------------------------------------------------===//


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63236.204966.patch
Type: text/x-patch
Size: 500 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190616/f2abc363/attachment.bin>


More information about the llvm-commits mailing list