allow '-var-list-children var0' and -var-list-children "var0"' to be used with the -var-list-children command. GDB MI allows for this and it is necessary if the variable name contains spaces, such as var5.std::_Vector_base<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >.
Details
Diff Detail
Event Timeline
Yea, I can. Do you not have commit access? You should email Chris Lattner and request it, turnaround time is pretty quick.
@zturner I have been granted commit after approval from Chris. How do I commit from here?
You'll probably want to read this:
http://llvm.org/docs/GettingStarted.html#for-developers-to-work-with-git-svn
Try a test commit first (fix a typo or add a comment). If you have
specific problems with the test commit them post back and I can try to help.
@zturner I successfully submitted my test commit from an svn working copy. My former workflow was to use the read only git mirror, generate a diff, and submit it through this tool. Is there a better way to use differential so that I can submit directly via an approved code review?
You can't submit directly from a code review. You always have to submit via git svn dcommit. If you edit your commit message (e.g. with git commit --amend) you can add a line at the bottom that says
Differential Revision: http://reviews.llvm.org/D15168
Then when you dcommit it, Phabricator should automatically close the revision for you. But there's no way to submit from Phabricator.