mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-13 08:56:04 +00:00
make getnext/getprev accessors private.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36209 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
747603e39e
commit
4cc12c9f57
@ -149,15 +149,6 @@ public:
|
|||||||
void eraseFromParent();
|
void eraseFromParent();
|
||||||
|
|
||||||
|
|
||||||
// getNext/Prev - Return the next or previous function in the list. These
|
|
||||||
// methods should never be used directly, and are only used to implement the
|
|
||||||
// function list as part of the module.
|
|
||||||
//
|
|
||||||
Function *getNext() { return Next; }
|
|
||||||
const Function *getNext() const { return Next; }
|
|
||||||
Function *getPrev() { return Prev; }
|
|
||||||
const Function *getPrev() const { return Prev; }
|
|
||||||
|
|
||||||
/// Get the underlying elements of the Function... the basic block list is
|
/// Get the underlying elements of the Function... the basic block list is
|
||||||
/// empty for external functions.
|
/// empty for external functions.
|
||||||
///
|
///
|
||||||
@ -252,6 +243,15 @@ public:
|
|||||||
Function *Obj = 0;
|
Function *Obj = 0;
|
||||||
return unsigned(reinterpret_cast<uintptr_t>(&Obj->ArgumentList));
|
return unsigned(reinterpret_cast<uintptr_t>(&Obj->ArgumentList));
|
||||||
}
|
}
|
||||||
|
private:
|
||||||
|
// getNext/Prev - Return the next or previous function in the list. These
|
||||||
|
// methods should never be used directly, and are only used to implement the
|
||||||
|
// function list as part of the module.
|
||||||
|
//
|
||||||
|
Function *getNext() { return Next; }
|
||||||
|
const Function *getNext() const { return Next; }
|
||||||
|
Function *getPrev() { return Prev; }
|
||||||
|
const Function *getPrev() const { return Prev; }
|
||||||
};
|
};
|
||||||
|
|
||||||
inline ValueSymbolTable *
|
inline ValueSymbolTable *
|
||||||
|
@ -93,12 +93,6 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// getNext/Prev - Return the next or previous global variable in the list.
|
|
||||||
GlobalVariable *getNext() { return Next; }
|
|
||||||
const GlobalVariable *getNext() const { return Next; }
|
|
||||||
GlobalVariable *getPrev() { return Prev; }
|
|
||||||
const GlobalVariable *getPrev() const { return Prev; }
|
|
||||||
|
|
||||||
/// If the value is a global constant, its value is immutable throughout the
|
/// If the value is a global constant, its value is immutable throughout the
|
||||||
/// runtime execution of the program. Assigning a value into the constant
|
/// runtime execution of the program. Assigning a value into the constant
|
||||||
/// leads to undefined behavior.
|
/// leads to undefined behavior.
|
||||||
@ -132,6 +126,12 @@ public:
|
|||||||
static inline bool classof(const Value *V) {
|
static inline bool classof(const Value *V) {
|
||||||
return V->getValueID() == Value::GlobalVariableVal;
|
return V->getValueID() == Value::GlobalVariableVal;
|
||||||
}
|
}
|
||||||
|
private:
|
||||||
|
// getNext/Prev - Return the next or previous global variable in the list.
|
||||||
|
GlobalVariable *getNext() { return Next; }
|
||||||
|
const GlobalVariable *getNext() const { return Next; }
|
||||||
|
GlobalVariable *getPrev() { return Prev; }
|
||||||
|
const GlobalVariable *getPrev() const { return Prev; }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
Loading…
x
Reference in New Issue
Block a user