[PATCH] D56793: [SelectionDAG] Add option -dag-dump-verbose-dbg
Bjorn Pettersson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 17 09:04:23 PST 2019
bjope marked an inline comment as done.
bjope added inline comments.
================
Comment at: include/llvm/CodeGen/SelectionDAG.h:1355-1357
+ const ArrayRef<SDDbgValue*> GetDbgValues(const SDNode* SD) const {
+ return DbgInfo->getSDDbgValues(SD);
+ }
----------------
jmorse wrote:
> Doesn't compile for me, the other GetDbgValues method is already const, so this only overloads the return type which C++ disallows.
Ok. Sorry. I resurrected this from some old branch and forgot to verify that it works on latest trunk.
But since it seems useful I'll cleanup this a little bit (and of course making sure it compiles again).
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56793/new/
https://reviews.llvm.org/D56793
More information about the llvm-commits
mailing list