diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-05-25 21:10:46 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-05-25 21:10:46 +0000 |
commit | 7d49c9c8610f1d8756292efa875717470db1d067 (patch) | |
tree | ae23edcc9ee717f45fd9d605b3d917de5d2ea900 /lldb/source/Commands/CommandObjectBreakpoint.h | |
parent | 03968fac4f04d863346bf5e28e815a2fc613a325 (diff) | |
download | bcm5719-llvm-7d49c9c8610f1d8756292efa875717470db1d067.tar.gz bcm5719-llvm-7d49c9c8610f1d8756292efa875717470db1d067.zip |
rdar://problem/11533713
Allow setting conditions inline with breakpoints. Add test cases.
llvm-svn: 157497
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.h b/lldb/source/Commands/CommandObjectBreakpoint.h index c9447452adc..143b95462cc 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.h +++ b/lldb/source/Commands/CommandObjectBreakpoint.h @@ -98,6 +98,7 @@ public: // Instance variables to hold the values for command options. + std::string m_condition; FileSpecList m_filenames; uint32_t m_line_num; uint32_t m_column; |