1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Trim #includes

llvm-svn: 2169
This commit is contained in:
Chris Lattner 2002-04-08 21:52:32 +00:00
parent c49ebac684
commit ada9cc6352
2 changed files with 12 additions and 3 deletions

View File

@ -8,7 +8,7 @@
#ifndef LLVM_ANALYSIS_WRITER_H #ifndef LLVM_ANALYSIS_WRITER_H
#define LLVM_ANALYSIS_WRITER_H #define LLVM_ANALYSIS_WRITER_H
#include "llvm/Assembly/Writer.h" #include <iosfwd>
namespace cfg { namespace cfg {

View File

@ -10,12 +10,21 @@
#ifndef LLVM_ASSEMBLY_CACHED_WRITER_H #ifndef LLVM_ASSEMBLY_CACHED_WRITER_H
#define LLVM_ASSEMBLY_CACHED_WRITER_H #define LLVM_ASSEMBLY_CACHED_WRITER_H
#include "llvm/Assembly/Writer.h" #include "llvm/Value.h"
#include <iostream> #include <iostream>
class AssemblyWriter; // Internal private class class GlobalVariable;
class Function;
class FunctionArgument;
class BasicBlock;
class Instruction;
class Constant;
class PointerType;
class SlotCalculator; class SlotCalculator;
class AssemblyWriter; // Internal private class
class CachedWriter { class CachedWriter {
AssemblyWriter *AW; AssemblyWriter *AW;
SlotCalculator *SC; SlotCalculator *SC;