1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

BTFDebug.h - reduce MachineInstr.h include to forward declaration. NFCI.

This commit is contained in:
Simon Pilgrim 2020-09-07 17:50:58 +01:00
parent 38c8707d93
commit 54e2cf9073

View File

@ -16,7 +16,8 @@
#include "llvm/ADT/StringMap.h"
#include "llvm/CodeGen/DebugHandlerBase.h"
#include "llvm/CodeGen/MachineInstr.h"
#include <cstdint>
#include <map>
#include <set>
#include <unordered_map>
#include "BTF.h"
@ -27,9 +28,12 @@ class AsmPrinter;
class BTFDebug;
class DIType;
class GlobalVariable;
class MachineFunction;
class MachineInstr;
class MachineOperand;
class MCInst;
class MCStreamer;
class MCSymbol;
class MachineFunction;
/// The base class for BTF type generation.
class BTFTypeBase {