mirror of
https://github.com/RPCS3/llvm.git
synced 2026-08-26 18:26:51 -04:00
cfb570d66f
Everything now compiles successfully, but there are still undefined references. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270298 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
751 B
C++
30 lines
751 B
C++
//===----- AVRELFStreamer.h - AVR 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 LLVM_AVR_ELF_STREAMER_H
|
|
#define LLVM_AVR_ELF_STREAMER_H
|
|
|
|
#include "AVRTargetStreamer.h"
|
|
|
|
namespace llvm {
|
|
|
|
/// A target streamer for an AVR ELF object file.
|
|
class AVRELFStreamer : public AVRTargetStreamer {
|
|
public:
|
|
AVRELFStreamer(MCStreamer &S, const MCSubtargetInfo &STI);
|
|
|
|
MCELFStreamer &getStreamer() {
|
|
return static_cast<MCELFStreamer &>(Streamer);
|
|
}
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|