MCInstrDesc.h - move MCSubtargetInfo forward declaration down to MCInstrInfo.h. NFC.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Thu, 16 Apr 2020 16:08:57 +0000 (17:08 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Thu, 16 Apr 2020 16:13:56 +0000 (17:13 +0100)
Remove unused FeatureBitset forward declaration

llvm/include/llvm/MC/MCInstrDesc.h
llvm/include/llvm/MC/MCInstrInfo.h

index fa620d2..17454e3 100644 (file)
@@ -19,9 +19,8 @@
 #include <string>
 
 namespace llvm {
-  class MCInst;
-  class MCSubtargetInfo;
-  class FeatureBitset;
+
+class MCInst;
 
 //===----------------------------------------------------------------------===//
 // Machine Operand Flags and Description
index f5c944e..598e242 100644 (file)
@@ -18,6 +18,8 @@
 
 namespace llvm {
 
+class MCSubtargetInfo;
+
 //---------------------------------------------------------------------------
 /// Interface to description of machine instruction set.
 class MCInstrInfo {