[AArch64] Add support for the .inst directive.
[oota-llvm.git] / include / llvm / MC / MCStreamer.h
index d8ba0c7f2b817a036c08c6913fbab3934c7e5b1d..5cded5cfff9005ffbd126bcf20d74eac4e2ab92c 100644 (file)
@@ -91,7 +91,6 @@ public:
   AArch64TargetStreamer(MCStreamer &S);
   ~AArch64TargetStreamer();
 
-
   void finish() override;
 
   /// Callback used to implement the ldr= pseudo.
@@ -103,6 +102,9 @@ public:
   /// Emit contents of constant pool for the current section.
   void emitCurrentConstantPool();
 
+  /// Callback used to implement the .inst directive.
+  virtual void emitInst(uint32_t Inst);
+
 private:
   std::unique_ptr<AssemblerConstantPools> ConstantPools;
 };