mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 19:25:00 +00:00
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:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user