Deleted Added
full compact
AVRTargetStreamer.h (309124) AVRTargetStreamer.h (326496)
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//===----------------------------------------------------------------------===//

--- 5 unchanged lines hidden (view full) ---

14
15namespace llvm {
16class MCStreamer;
17
18/// A generic AVR target output stream.
19class AVRTargetStreamer : public MCTargetStreamer {
20public:
21 explicit AVRTargetStreamer(MCStreamer &S);
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//===----------------------------------------------------------------------===//

--- 5 unchanged lines hidden (view full) ---

14
15namespace llvm {
16class MCStreamer;
17
18/// A generic AVR target output stream.
19class AVRTargetStreamer : public MCTargetStreamer {
20public:
21 explicit AVRTargetStreamer(MCStreamer &S);
22
23 void finish() override;
22};
23
24/// A target streamer for textual AVR assembly code.
25class AVRTargetAsmStreamer : public AVRTargetStreamer {
26public:
27 explicit AVRTargetAsmStreamer(MCStreamer &S);
28};
29
30} // end namespace llvm
31
32#endif // LLVM_AVR_TARGET_STREAMER_H
24};
25
26/// A target streamer for textual AVR assembly code.
27class AVRTargetAsmStreamer : public AVRTargetStreamer {
28public:
29 explicit AVRTargetAsmStreamer(MCStreamer &S);
30};
31
32} // end namespace llvm
33
34#endif // LLVM_AVR_TARGET_STREAMER_H