mirror of
https://github.com/RPCSX/llvm.git
synced 2025-03-03 10:27:09 +00:00
Duh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25628 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
545977371a
commit
44b974c111
@ -63,8 +63,8 @@ namespace llvm {
|
||||
|
||||
// Accessors
|
||||
inline void setDominator(NodeInfo *D) { Dominator = D; }
|
||||
inline NodeInfo *getTop() { return Members[0]; }
|
||||
inline NodeInfo *getBottom() { return Members[Members.size()-1]; }
|
||||
inline NodeInfo *getTop() { return Members.front(); }
|
||||
inline NodeInfo *getBottom() { return Members.back(); }
|
||||
inline NodeInfo *getDominator() { return Dominator; }
|
||||
inline void setLatency(unsigned L) { Latency = L; }
|
||||
inline unsigned getLatency() { return Latency; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user