[PATCH] D95954: [NFC] Use the same type for bit fields in MCSchedClassDesc

Andrew Savonichev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 17 04:59:53 PST 2021


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4bee0dc918d2: [NFC] Use the same type for bit fields in MCSchedClassDesc (authored by asavonic).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D95954

Files:
  llvm/include/llvm/MC/MCSchedule.h


Index: llvm/include/llvm/MC/MCSchedule.h
===================================================================
--- llvm/include/llvm/MC/MCSchedule.h
+++ llvm/include/llvm/MC/MCSchedule.h
@@ -115,8 +115,8 @@
   const char* Name;
 #endif
   uint16_t NumMicroOps : 14;
-  bool     BeginGroup : 1;
-  bool     EndGroup : 1;
+  uint16_t BeginGroup : 1;
+  uint16_t EndGroup : 1;
   uint16_t WriteProcResIdx; // First index into WriteProcResTable.
   uint16_t NumWriteProcResEntries;
   uint16_t WriteLatencyIdx; // First index into WriteLatencyTable.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95954.324276.patch
Type: text/x-patch
Size: 544 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210217/91e38071/attachment.bin>


More information about the llvm-commits mailing list