[PATCH] D122221: [Bundle][Codegen] Ignore bundle for meta-instruction

Kan Shengchen via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 22 19:15:06 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb7a4b6738059: [Bundle][Codegen] Ignore bundle for meta-instruction (authored by skan).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D122221

Files:
  llvm/include/llvm/CodeGen/MachineInstr.h


Index: llvm/include/llvm/CodeGen/MachineInstr.h
===================================================================
--- llvm/include/llvm/CodeGen/MachineInstr.h
+++ llvm/include/llvm/CodeGen/MachineInstr.h
@@ -814,7 +814,7 @@
 
   /// Return true if this instruction doesn't produce any output in the form of
   /// executable instructions.
-  bool isMetaInstruction(QueryType Type = AnyInBundle) const {
+  bool isMetaInstruction(QueryType Type = IgnoreBundle) const {
     return hasProperty(MCID::Meta, Type);
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122221.417469.patch
Type: text/x-patch
Size: 520 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220323/a22bb30c/attachment.bin>


More information about the llvm-commits mailing list