[llvm] [llvm-exegesis] Add HasNoSchedulingInfo flag to MCInstDesc. (PR #143840)

Jim Lin via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 16 02:20:14 PDT 2025


================
@@ -430,6 +431,11 @@ class MCInstrDesc {
     return Flags & (1ULL << MCID::Authenticated);
   }
 
+  /// Return true if this instruction has no scheduling info.
+  bool hasNoSchedulingInfo() const {
+    return Flags & (1ULL << MCID::HasNoSchedulingInfo);
+  }
+
----------------
tclin914 wrote:

Done. Thanks.

https://github.com/llvm/llvm-project/pull/143840


More information about the llvm-commits mailing list