diff options
author | Quentin Colombet <qcolombet@apple.com> | 2016-09-23 17:50:03 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2016-09-23 17:50:03 +0000 |
commit | 09a9edcc2653d8e737be4047fc7d6857f8d1cb85 (patch) | |
tree | d1457d1a051f9be30f74688ff0c5fc96e40c78af /llvm/lib/CodeGen | |
parent | 8cef4b0bb4bae8598efa7cd1274e54f534b0f4a4 (diff) | |
download | bcm5719-llvm-09a9edcc2653d8e737be4047fc7d6857f8d1cb85.tar.gz bcm5719-llvm-09a9edcc2653d8e737be4047fc7d6857f8d1cb85.zip |
[RegisterBank] Mark the dump method with LLVM_DUMP_METHOD.
NFC
llvm-svn: 282266
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp b/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp index a911225b5af..0ffc08188ea 100644 --- a/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp +++ b/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp @@ -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); } |