diff options
author | Sam Clegg <sbc@chromium.org> | 2017-06-21 22:19:17 +0000 |
---|---|---|
committer | Sam Clegg <sbc@chromium.org> | 2017-06-21 22:19:17 +0000 |
commit | 705f798bff394f8f4372d917dfb93fac6017fe34 (patch) | |
tree | 50f84972e7b1976fff00fce0cd2182c6f9fa0c4e /llvm/lib/CodeGen/LiveDebugVariables.h | |
parent | e3eb42cef64ffee02fe00d633eeb0c44e24217e9 (diff) | |
download | bcm5719-llvm-705f798bff394f8f4372d917dfb93fac6017fe34.tar.gz bcm5719-llvm-705f798bff394f8f4372d917dfb93fac6017fe34.zip |
Mark dump() methods as const. NFC
Add const qualifier to any dump() method where adding one
was trivial.
Differential Revision: https://reviews.llvm.org/D34481
llvm-svn: 305963
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.h')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugVariables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.h b/llvm/lib/CodeGen/LiveDebugVariables.h index afe87a52544..1d7e3d4371a 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.h +++ b/llvm/lib/CodeGen/LiveDebugVariables.h @@ -59,7 +59,7 @@ public: void emitDebugValues(VirtRegMap *VRM); /// dump - Print data structures to dbgs(). - void dump(); + void dump() const; private: |