[Lldb-commits] [lldb] r113669 - /lldb/trunk/docs/lldb-for-gdb-users.txt

Jim Ingham jingham at apple.com
Fri Sep 10 17:03:03 PDT 2010


Author: jingham
Date: Fri Sep 10 19:03:03 2010
New Revision: 113669

URL: http://llvm.org/viewvc/llvm-project?rev=113669&view=rev
Log:
Don't use lldb syntax in the gdb examples...

Modified:
    lldb/trunk/docs/lldb-for-gdb-users.txt

Modified: lldb/trunk/docs/lldb-for-gdb-users.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/docs/lldb-for-gdb-users.txt?rev=113669&r1=113668&r2=113669&view=diff
==============================================================================
--- lldb/trunk/docs/lldb-for-gdb-users.txt (original)
+++ lldb/trunk/docs/lldb-for-gdb-users.txt Fri Sep 10 19:03:03 2010
@@ -35,11 +35,11 @@
 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





More information about the lldb-commits mailing list