xref: /llvm-project/llvm/lib/Target/XCore/XCoreTargetStreamer.h (revision 3bb12d3005ffdf5b2b34d4a84008e50ef4577e46)
1 //===-- XCoreTargetStreamer.h - XCore Target Streamer ----------*- C++ -*--===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLVM_LIB_TARGET_XCORE_XCORETARGETSTREAMER_H
10 #define LLVM_LIB_TARGET_XCORE_XCORETARGETSTREAMER_H
11 
12 #include "llvm/MC/MCStreamer.h"
13 
14 namespace llvm {
15 class XCoreTargetStreamer : public MCTargetStreamer {
16 public:
17   XCoreTargetStreamer(MCStreamer &S);
18   ~XCoreTargetStreamer() override;
emitCCTopData(StringRef Name)19   virtual void emitCCTopData(StringRef Name){};
emitCCTopFunction(StringRef Name)20   virtual void emitCCTopFunction(StringRef Name){};
emitCCBottomData(StringRef Name)21   virtual void emitCCBottomData(StringRef Name){};
emitCCBottomFunction(StringRef Name)22   virtual void emitCCBottomFunction(StringRef Name){};
23 };
24 }
25 
26 #endif
27