Change uses of Method to Function

Change uses of methodArgument to FunctionArgument


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1988 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-03-26 17:49:55 +00:00
parent b277d1d0e0
commit 0fc0c1d3e1
3 changed files with 9 additions and 13 deletions

View File

@@ -43,10 +43,10 @@ public:
inline CachedWriter &operator<<(const GlobalVariable *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const Method *X) {
inline CachedWriter &operator<<(const Function *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const MethodArgument *X) {
inline CachedWriter &operator<<(const FunctionArgument *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const BasicBlock *X) {