mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-07 20:40:28 +00:00
IR: Default the Metadata::dump() argument "harder" after r232275
Use an overload instead of a default argument for `Metadata::dump()`. The latter seems to require calling `dump(nullptr)` explicitly when using a debugger, where as the former doesn't. Other than utility for debugging, there's NFC here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232315 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f5cb5de29b
commit
9ca358021c
@ -106,7 +106,14 @@ public:
|
||||
///
|
||||
/// If \c M is provided, metadata nodes will be numbered canonically;
|
||||
/// otherwise, pointer addresses are substituted.
|
||||
void dump(const Module *M = nullptr) const;
|
||||
///
|
||||
/// Note: this uses an explicit overload instead of default arguments so that
|
||||
/// the nullptr version is easy to call from a debugger.
|
||||
///
|
||||
/// @{
|
||||
void dump() const;
|
||||
void dump(const Module *M) const;
|
||||
/// @}
|
||||
|
||||
/// \brief Print.
|
||||
///
|
||||
|
@ -3289,6 +3289,9 @@ void Comdat::dump() const { print(dbgs()); }
|
||||
LLVM_DUMP_METHOD
|
||||
void NamedMDNode::dump() const { print(dbgs()); }
|
||||
|
||||
LLVM_DUMP_METHOD
|
||||
void Metadata::dump() const { dump(nullptr); }
|
||||
|
||||
LLVM_DUMP_METHOD
|
||||
void Metadata::dump(const Module *M) const {
|
||||
print(dbgs(), M);
|
||||
|
Loading…
Reference in New Issue
Block a user