mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
cd52a7a381
Apparently, the style needs to be agreed upon first. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240390 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
//===-- HexagonTargetStreamer.h - Hexagon Target Streamer ------*- C++ -*--===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef HEXAGONTARGETSTREAMER_H
|
|
#define HEXAGONTARGETSTREAMER_H
|
|
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
namespace llvm {
|
|
class HexagonTargetStreamer : public MCTargetStreamer {
|
|
public:
|
|
HexagonTargetStreamer(MCStreamer &S) : MCTargetStreamer(S) {}
|
|
virtual void EmitCodeAlignment(unsigned ByteAlignment,
|
|
unsigned MaxBytesToEmit = 0){};
|
|
virtual void emitFAlign(unsigned Size, unsigned MaxBytesToEmit){};
|
|
virtual void EmitCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size,
|
|
unsigned ByteAlignment,
|
|
unsigned AccessGranularity){};
|
|
virtual void EmitLocalCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size,
|
|
unsigned ByteAlign,
|
|
unsigned AccessGranularity){};
|
|
};
|
|
}
|
|
|
|
#endif
|