LLVM  4.0.0
AVRTargetStreamer.h
Go to the documentation of this file.
1 //===-- AVRTargetStreamer.h - AVR Target Streamer --------------*- C++ -*--===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLVM_AVR_TARGET_STREAMER_H
11 #define LLVM_AVR_TARGET_STREAMER_H
12 
13 #include "llvm/MC/MCELFStreamer.h"
14 
15 namespace llvm {
16 class MCStreamer;
17 
18 /// A generic AVR target output stream.
20 public:
21  explicit AVRTargetStreamer(MCStreamer &S);
22 };
23 
24 /// A target streamer for textual AVR assembly code.
26 public:
27  explicit AVRTargetAsmStreamer(MCStreamer &S);
28 };
29 
30 } // end namespace llvm
31 
32 #endif // LLVM_AVR_TARGET_STREAMER_H
Target specific streamer interface.
Definition: MCStreamer.h:73
A target streamer for textual AVR assembly code.
AVRTargetStreamer(MCStreamer &S)
Streaming machine code generation interface.
Definition: MCStreamer.h:161
A generic AVR target output stream.