Don't use lldb syntax in the gdb examples...

llvm-svn: 113669
This commit is contained in:
Jim Ingham 2010-09-11 00:03:03 +00:00
parent d0a5f4e238
commit a4601b6496
1 changed files with 2 additions and 2 deletions

View File

@ -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