User Details
- User Since
- Jan 9 2015, 12:33 AM (428 w, 6 d)
Nov 29 2020
Nov 5 2020
@hans they are ignored because Clang behaves like MSVC with these options
enabled (C++ standard conformance mode)
Nov 3 2020
Oct 12 2020
@rsmith Friendly ping.
@rsmith Friendly ping.
@rsmith Friendly ping.
@rsmith Friendly ping.
Sep 9 2020
Not sure, but I'd be surprised if Clang behaves like MSVC in one of these cases.
Add tests
Oct 11 2019
May 26 2018
👍
Mar 3 2018
I'm OOO till Mar 13. Can do that when I get back.
Thank you for this patch. And the next time please use arc or diff -U9999 for a full context.
Nov 14 2017
Sep 7 2017
Apr 27 2017
Apr 21 2017
Thanks for catching this! Could you update this CL to let me commit it?
Apr 4 2017
Mar 29 2017
Would you like me to commit it?
Mar 28 2017
LGTM. Just fix a few minor issues before committing.
Feb 3 2017
lgtm
Jan 31 2017
Jan 30 2017
Jan 29 2017
I don't know the point of this patch (probably it's something special for NetBSD? @emaste) but I'm okay with that.
Jan 6 2017
lgtm
Nov 27 2016
@enlight , thanks for giving a chance to review it, and sorry that it took to long from my side.
Oct 14 2016
Oct 13 2016
Oct 11 2016
Sep 21 2016
Rebase againt ToT; Apply clang-format & autopep; Minor fix in condition
Sep 20 2016
yes
Sep 18 2016
Hi! Please add tests for commands that you fixed. I'll take a look later this week.
Sep 12 2016
Rebase against ToT; Apply autopep8
Sep 11 2016
Rebase against ToT
@edmunoz, good job. Thank you! Would you like me to commit?
PS: I think it will look like:
Index: tools/lldb-mi/MICmdCmdBreak.cpp =================================================================== --- tools/lldb-mi/MICmdCmdBreak.cpp (revision 281191) +++ tools/lldb-mi/MICmdCmdBreak.cpp (working copy) @@ -84,8 +84,7 @@ // Not implemented m_setCmdArgs.Add(new CMICmdArgValOptionShort( // m_constStrArgNamedHWBrkPt, false, false)); m_setCmdArgs.Add(new CMICmdArgValOptionShort( - m_constStrArgNamedPendinfBrkPt, false, true, - CMICmdArgValListBase::eArgValType_StringQuotedNumberPath, 1)); + m_constStrArgNamedPendinfBrkPt, false, true)); m_setCmdArgs.Add(new CMICmdArgValOptionShort(m_constStrArgNamedDisableBrkPt, false, false)); // Not implemented m_setCmdArgs.Add(new CMICmdArgValOptionShort( @@ -99,7 +98,7 @@ m_setCmdArgs.Add(new CMICmdArgValOptionShort( m_constStrArgNamedRestrictBrkPtToThreadId, false, true, CMICmdArgValListBase::eArgValType_Number, 1)); - m_setCmdArgs.Add(new CMICmdArgValString(m_constStrArgNamedLocation, false, + m_setCmdArgs.Add(new CMICmdArgValString(m_constStrArgNamedLocation, true, true, false, false, true)); return ParseValidateCmdOptions(); } @@ -158,12 +157,7 @@ m_strArgOptionThreadGrp = CMIUtilString::Format("i%d", nThreadGrp); } m_bBrkPtIsPending = pArgPendingBrkPt->GetFound(); - if (pArgLocation->GetFound()) - m_brkName = pArgLocation->GetValue(); - else if (m_bBrkPtIsPending) { - pArgPendingBrkPt->GetExpectedOption<CMICmdArgValString, CMIUtilString>( - m_brkName); - } + m_brkName = pArgLocation->GetValue(); if (pArgIgnoreCnt->GetFound()) { pArgIgnoreCnt->GetExpectedOption<CMICmdArgValNumber, MIuint>( m_nBrkPtIgnoreCount);
I'm sorry for the delay, have a lot of work. Please folllow my inline comments, rebase against ToT and update CL's summary.
You forgot to remove its header file
Apply clang-format
Rebase against ToT
Sep 8 2016
Fixes per Zachary's comments
Apply clang-format
Remove obvious comment
Sep 7 2016
BTW, the following warnings remain:
Aug 29 2016
lgtm if tests are passed
Aug 2 2016
Yes, that's what I said. We have to throw an error if location is not passed (even if -f is specified).
Aug 1 2016
So, what you want is to create pending breakpoints without locations?
Jul 28 2016
No. I'm going to land it right now! Thanks!
Jul 27 2016
Could you add a test case for this in packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/TestMiBreak.py?
Jul 14 2016
add checks for =breakpoint-modified
@faxue, thank you for your patch! The fixes look good, but if you don't mind I gonna improve your tests. After that I'll commit this patch.
Jul 13 2016
Hi Chuck! Sorry for delay, didn't see this CL. I'll check it tomorrow, so pls wait one more day.
Feb 3 2016
Dec 17 2015
clang-format your changes please (there are many deviations from the coding style)
Dec 2 2015
lgtm
Nov 2 2015
lgtm
Nov 1 2015
Oct 29 2015
LGTM
Oct 26 2015
lgtm
Oct 2 2015
It's not "accepted" because @clayborg rejected this CL and hasn't changed his decision. But I think he will not mind if you go ahead.
Sep 30 2015
lgtm
Sep 29 2015
Could you make one additional cleanup here please?