mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Add dump/dumpr methods to SDValue.
llvm-svn: 162014
This commit is contained in:
parent
767c82d4e0
commit
18ebdab46c
@ -146,7 +146,8 @@ public:
|
||||
inline bool isMachineOpcode() const;
|
||||
inline unsigned getMachineOpcode() const;
|
||||
inline const DebugLoc getDebugLoc() const;
|
||||
|
||||
inline void dump() const;
|
||||
inline void dumpr() const;
|
||||
|
||||
/// reachesChainWithoutSideEffects - Return true if this operand (which must
|
||||
/// be a chain) reaches the specified operand without crossing any
|
||||
@ -806,7 +807,12 @@ inline bool SDValue::hasOneUse() const {
|
||||
inline const DebugLoc SDValue::getDebugLoc() const {
|
||||
return Node->getDebugLoc();
|
||||
}
|
||||
|
||||
inline void SDValue::dump() const {
|
||||
return Node->dump();
|
||||
}
|
||||
inline void SDValue::dumpr() const {
|
||||
return Node->dumpr();
|
||||
}
|
||||
// Define inline functions from the SDUse class.
|
||||
|
||||
inline void SDUse::set(const SDValue &V) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user