mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
Trim #includes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2169 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
42a695c2f2
commit
8d3b30ab3c
@ -8,7 +8,7 @@
|
||||
#ifndef LLVM_ANALYSIS_WRITER_H
|
||||
#define LLVM_ANALYSIS_WRITER_H
|
||||
|
||||
#include "llvm/Assembly/Writer.h"
|
||||
#include <iosfwd>
|
||||
|
||||
namespace cfg {
|
||||
|
||||
|
@ -10,12 +10,21 @@
|
||||
#ifndef LLVM_ASSEMBLY_CACHED_WRITER_H
|
||||
#define LLVM_ASSEMBLY_CACHED_WRITER_H
|
||||
|
||||
#include "llvm/Assembly/Writer.h"
|
||||
#include "llvm/Value.h"
|
||||
#include <iostream>
|
||||
|
||||
class AssemblyWriter; // Internal private class
|
||||
class GlobalVariable;
|
||||
class Function;
|
||||
class FunctionArgument;
|
||||
class BasicBlock;
|
||||
class Instruction;
|
||||
class Constant;
|
||||
class PointerType;
|
||||
class SlotCalculator;
|
||||
|
||||
|
||||
class AssemblyWriter; // Internal private class
|
||||
|
||||
class CachedWriter {
|
||||
AssemblyWriter *AW;
|
||||
SlotCalculator *SC;
|
||||
|
Loading…
Reference in New Issue
Block a user