mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Remove forward def'ns that are already in Value.h
Do not support output of Modules directly llvm-svn: 2349
This commit is contained in:
parent
8a53fbd0d0
commit
67649f6aec
@ -13,16 +13,9 @@
|
||||
#include "llvm/Value.h"
|
||||
#include <iostream>
|
||||
|
||||
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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user