From 09a60ac9fe4fff553fb5fdee10cd09c8b6855cf4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 28 Apr 2002 04:47:33 +0000 Subject: [PATCH] Remove forward def'ns that are already in Value.h Do not support output of Modules directly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2349 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Assembly/CachedWriter.h | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/include/llvm/Assembly/CachedWriter.h b/include/llvm/Assembly/CachedWriter.h index f78df1a5912..c1ef1037ee3 100644 --- a/include/llvm/Assembly/CachedWriter.h +++ b/include/llvm/Assembly/CachedWriter.h @@ -13,16 +13,9 @@ #include "llvm/Value.h" #include -class GlobalVariable; -class Function; -class Argument; -class BasicBlock; -class Instruction; -class Constant; +class Module; class PointerType; class SlotCalculator; - - class AssemblyWriter; // Internal private class class CachedWriter { @@ -46,9 +39,6 @@ public: inline CachedWriter &operator<<(Value *X) { return *this << (const Value*)X; } - inline CachedWriter &operator<<(const Module *X) { - return *this << (const Value*)X; - } inline CachedWriter &operator<<(const GlobalVariable *X) { return *this << (const Value*)X; } -- 2.34.1