diff options
| author | Jim Ingham <jingham@apple.com> | 2010-09-11 00:03:03 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2010-09-11 00:03:03 +0000 |
| commit | a4601b64962e5ff24350bc9f33bab9c4574d6d6b (patch) | |
| tree | 71e4898df00aed1916590b883602d4988c6e89ef | |
| parent | d0a5f4e238c6647f2e012d17831bbf242258b59a (diff) | |
| download | bcm5719-llvm-a4601b64962e5ff24350bc9f33bab9c4574d6d6b.tar.gz bcm5719-llvm-a4601b64962e5ff24350bc9f33bab9c4574d6d6b.zip | |
Don't use lldb syntax in the gdb examples...
llvm-svn: 113669
| -rw-r--r-- | lldb/docs/lldb-for-gdb-users.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/docs/lldb-for-gdb-users.txt b/lldb/docs/lldb-for-gdb-users.txt index 5b4c40c36e2..1071ac76032 100644 --- a/lldb/docs/lldb-for-gdb-users.txt +++ b/lldb/docs/lldb-for-gdb-users.txt @@ -35,11 +35,11 @@ about stating their intentions. The first instance you'll note of this is the breakpoint command. In gdb, to set a breakpoint, you would just say: -(gdb) break set foo.c:12 +(gdb) break foo.c:12 or -(gdb) break set foo +(gdb) break foo if foo is a function. As time went on, the parser that tells foo.c:12 from foo from foo.c::foo (which means the function foo in the file |

