diff options
| author | Jim Ingham <jingham@apple.com> | 2015-05-13 19:01:15 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2015-05-13 19:01:15 +0000 |
| commit | f9e1a165dd8fe700321f8b836b609f4fd218969a (patch) | |
| tree | cbd80c36e1210a74e7f5fd9b0c1a8d13c125b916 | |
| parent | bb1e283cc5c40300bdebbb0fded6be8bb6b434bf (diff) | |
| download | bcm5719-llvm-f9e1a165dd8fe700321f8b836b609f4fd218969a.tar.gz bcm5719-llvm-f9e1a165dd8fe700321f8b836b609f4fd218969a.zip | |
Add a comment clarifying what func_name_type_mask is.
llvm-svn: 237279
| -rw-r--r-- | lldb/include/lldb/Target/Target.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/include/lldb/Target/Target.h b/lldb/include/lldb/Target/Target.h index c312116ce9b..419a1cbaca1 100644 --- a/lldb/include/lldb/Target/Target.h +++ b/lldb/include/lldb/Target/Target.h @@ -733,7 +733,8 @@ public: // Use this to create a function breakpoint by name in containingModule, or all modules if it is NULL // When "skip_prologue is set to eLazyBoolCalculate, we use the current target - // setting, else we use the values passed in + // setting, else we use the values passed in. + // func_name_type_mask is or'ed values from the FunctionNameType enum. lldb::BreakpointSP CreateBreakpoint (const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, @@ -754,6 +755,7 @@ public: // This is the same as the func_name breakpoint except that you can specify a vector of names. This is cheaper // than a regular expression breakpoint in the case where you just want to set a breakpoint on a set of names // you already know. + // func_name_type_mask is or'ed values from the FunctionNameType enum. lldb::BreakpointSP CreateBreakpoint (const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, |

