forked from OSchip/llvm-project
Fix a typo.
The member m_nTimes is used in rest of lldb-mi to represent hit count. In one place, it was assigned a wrong value (number of locations). This resulted in lldb-mi showing a hit count of variable 1 when it was created. Committed as obvious. llvm-svn: 228150
This commit is contained in:
parent
5a1a780c2a
commit
94e222f943
|
@ -327,7 +327,7 @@ CMICmdCmdBreakInsert::Acknowledge(void)
|
|||
sBrkPtInfo.m_bEnabled = m_bBrkPtEnabled;
|
||||
sBrkPtInfo.m_bHaveArgOptionThreadGrp = m_bHaveArgOptionThreadGrp;
|
||||
sBrkPtInfo.m_strOptThrdGrp = m_strArgOptionThreadGrp;
|
||||
sBrkPtInfo.m_nTimes = m_brkPt.GetNumLocations();
|
||||
sBrkPtInfo.m_nTimes = m_brkPt.GetHitCount();
|
||||
sBrkPtInfo.m_strOrigLoc = m_brkName;
|
||||
sBrkPtInfo.m_nIgnore = m_nBrkPtIgnoreCount;
|
||||
sBrkPtInfo.m_bPending = m_bBrkPtIsPending;
|
||||
|
|
Loading…
Reference in New Issue