commit | 705f798bff394f8f4372d917dfb93fac6017fe34 | [log] [tgz] |
---|---|---|
author | Sam Clegg <sbc@chromium.org> | Wed Jun 21 22:19:17 2017 +0000 |
committer | Sam Clegg <sbc@chromium.org> | Wed Jun 21 22:19:17 2017 +0000 |
tree | 50f84972e7b1976fff00fce0cd2182c6f9fa0c4e | |
parent | e3eb42cef64ffee02fe00d633eeb0c44e24217e9 [diff] [blame] |
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
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.h b/llvm/lib/CodeGen/LiveDebugVariables.h index afe87a5..1d7e3d4 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.h +++ b/llvm/lib/CodeGen/LiveDebugVariables.h
@@ -59,7 +59,7 @@ void emitDebugValues(VirtRegMap *VRM); /// dump - Print data structures to dbgs(). - void dump(); + void dump() const; private: