LLVM
23.0.0git
include
llvm
MC
MCAsmStreamer.h
Go to the documentation of this file.
1
//===- MCAsmStreamer.h - Base Class for Asm Streamers -----------*- 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
//===----------------------------------------------------------------------===//
8
//
9
// This file declares the MCAsmBaseStreamer class, a base class for streamers
10
// which emits assembly text.
11
//
12
//===----------------------------------------------------------------------===//
13
14
#ifndef LLVM_MC_MCASMSTREAMER_H
15
#define LLVM_MC_MCASMSTREAMER_H
16
17
#include "
llvm/MC/MCStreamer.h
"
18
19
namespace
llvm
{
20
21
class
MCContext
;
22
23
class
MCAsmBaseStreamer
:
public
MCStreamer
{
24
protected
:
25
MCAsmBaseStreamer
(
MCContext
&Context) :
MCStreamer
(Context) {}
26
};
27
28
}
// end namespace llvm
29
30
#endif
// LLVM_MC_MCASMSTREAMER_H
MCStreamer.h
llvm::MCAsmBaseStreamer::MCAsmBaseStreamer
MCAsmBaseStreamer(MCContext &Context)
Definition
MCAsmStreamer.h:25
llvm::MCContext
Context object for machine code objects.
Definition
MCContext.h:83
llvm::MCStreamer::MCStreamer
MCStreamer(MCContext &Ctx)
Definition
MCStreamer.cpp:92
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition
FunctionInfo.h:25
Generated on
for LLVM by
1.14.0