[RegisterBank] Mark the dump method with LLVM_DUMP_METHOD.

NFC

llvm-svn: 282266
This commit is contained in:
Quentin Colombet 2016-09-23 17:50:03 +00:00
parent 8cef4b0bb4
commit 09a9edcc26
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ bool RegisterBank::operator==(const RegisterBank &OtherRB) const {
return &OtherRB == this;
}
void RegisterBank::dump(const TargetRegisterInfo *TRI) const {
LLVM_DUMP_METHOD void RegisterBank::dump(const TargetRegisterInfo *TRI) const {
print(dbgs(), /* IsForDebug */ true, TRI);
}