mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
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
This commit is contained in:
parent
20ad298c74
commit
09a60ac9fe
@ -13,16 +13,9 @@
|
|||||||
#include "llvm/Value.h"
|
#include "llvm/Value.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
class GlobalVariable;
|
class Module;
|
||||||
class Function;
|
|
||||||
class Argument;
|
|
||||||
class BasicBlock;
|
|
||||||
class Instruction;
|
|
||||||
class Constant;
|
|
||||||
class PointerType;
|
class PointerType;
|
||||||
class SlotCalculator;
|
class SlotCalculator;
|
||||||
|
|
||||||
|
|
||||||
class AssemblyWriter; // Internal private class
|
class AssemblyWriter; // Internal private class
|
||||||
|
|
||||||
class CachedWriter {
|
class CachedWriter {
|
||||||
@ -46,9 +39,6 @@ public:
|
|||||||
inline CachedWriter &operator<<(Value *X) {
|
inline CachedWriter &operator<<(Value *X) {
|
||||||
return *this << (const Value*)X;
|
return *this << (const Value*)X;
|
||||||
}
|
}
|
||||||
inline CachedWriter &operator<<(const Module *X) {
|
|
||||||
return *this << (const Value*)X;
|
|
||||||
}
|
|
||||||
inline CachedWriter &operator<<(const GlobalVariable *X) {
|
inline CachedWriter &operator<<(const GlobalVariable *X) {
|
||||||
return *this << (const Value*)X;
|
return *this << (const Value*)X;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user