[ARM] Remove declaration of unimplemented function. NFC.
[llvm-complete.git] / lib / Target / Hexagon / HexagonTargetStreamer.h
blobc5200b76933e949ff42b23ea00cb3db4355ec55f
1 //===-- HexagonTargetStreamer.h - Hexagon 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 //===----------------------------------------------------------------------===//
9 #ifndef HEXAGONTARGETSTREAMER_H
10 #define HEXAGONTARGETSTREAMER_H
12 #include "llvm/MC/MCStreamer.h"
14 namespace llvm {
15 class HexagonTargetStreamer : public MCTargetStreamer {
16 public:
17 HexagonTargetStreamer(MCStreamer &S) : MCTargetStreamer(S) {}
18 virtual void EmitCodeAlignment(unsigned ByteAlignment,
19 unsigned MaxBytesToEmit = 0){};
20 virtual void emitFAlign(unsigned Size, unsigned MaxBytesToEmit){};
21 virtual void EmitCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size,
22 unsigned ByteAlignment,
23 unsigned AccessGranularity){};
24 virtual void EmitLocalCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size,
25 unsigned ByteAlign,
26 unsigned AccessGranularity){};
30 #endif