1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

MCSectionWasm.h - reduce includes to forward declarations. NFC.

This commit is contained in:
Simon Pilgrim 2020-06-27 09:57:03 +01:00
parent c9efaa6f02
commit 74afdd5cc2
2 changed files with 4 additions and 4 deletions

View File

@ -13,15 +13,14 @@
#ifndef LLVM_MC_MCSECTIONWASM_H
#define LLVM_MC_MCSECTIONWASM_H
#include "llvm/ADT/Twine.h"
#include "llvm/MC/MCSection.h"
#include "llvm/MC/MCSymbolWasm.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
namespace llvm {
class MCSymbol;
class MCSymbolWasm;
class StringRef;
class raw_ostream;
/// This represents a section on wasm.
class MCSectionWasm final : public MCSection {

View File

@ -10,6 +10,7 @@
#include "llvm/MC/MCAsmInfo.h"
#include "llvm/MC/MCExpr.h"
#include "llvm/MC/MCSymbol.h"
#include "llvm/MC/MCSymbolWasm.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;