[ms-inline-asm] Implement _emit directive (which is roughly equivalent to .byte).
[oota-llvm.git] / include / llvm / MC / MCSectionCOFF.h
index 8bf7f448ec53b453ad1fe551d7b028591f23c3b5..b050c0f442b602884c591e025b25a2deb4a91b43 100644 (file)
@@ -15,8 +15,8 @@
 #define LLVM_MC_MCSECTIONCOFF_H
 
 #include "llvm/MC/MCSection.h"
-
 #include "llvm/Support/COFF.h"
+#include "llvm/ADT/StringRef.h"
 
 namespace llvm {
 
@@ -56,11 +56,11 @@ namespace llvm {
     virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
                                       raw_ostream &OS) const;
     virtual bool UseCodeAlign() const;
+    virtual bool isVirtualSection() const;
 
     static bool classof(const MCSection *S) {
       return S->getVariant() == SV_COFF;
     }
-    static bool classof(const MCSectionCOFF *) { return true; }
   };
 
 } // end namespace llvm