[Lldb-commits] [lldb] r178732 - Change the default for "use-fast-stepping" to on.

Jim Ingham jingham at apple.com
Wed Apr 3 18:38:54 PDT 2013


Author: jingham
Date: Wed Apr  3 20:38:54 2013
New Revision: 178732

URL: http://llvm.org/viewvc/llvm-project?rev=178732&view=rev
Log:
Change the default for "use-fast-stepping" to on.

<rdar://problem/11319574>

Modified:
    lldb/trunk/source/Target/Target.cpp

Modified: lldb/trunk/source/Target/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Target.cpp?rev=178732&r1=178731&r2=178732&view=diff
==============================================================================
--- lldb/trunk/source/Target/Target.cpp (original)
+++ lldb/trunk/source/Target/Target.cpp Wed Apr  3 20:38:54 2013
@@ -2271,7 +2271,7 @@ g_properties[] =
         "file and line breakpoints." },
     // FIXME: This is the wrong way to do per-architecture settings, but we don't have a general per architecture settings system in place yet.
     { "x86-disassembly-flavor"             , OptionValue::eTypeEnum      , false, eX86DisFlavorDefault,       NULL, g_x86_dis_flavor_value_types, "The default disassembly flavor to use for x86 or x86-64 targets." },
-    { "use-fast-stepping"                  , OptionValue::eTypeBoolean   , false, false,                      NULL, NULL, "Use a fast stepping algorithm based on running from branch to branch rather than instruction single-stepping." },
+    { "use-fast-stepping"                  , OptionValue::eTypeBoolean   , false, true,                       NULL, NULL, "Use a fast stepping algorithm based on running from branch to branch rather than instruction single-stepping." },
     { NULL                                 , OptionValue::eTypeInvalid   , false, 0                         , NULL, NULL, NULL }
 };
 enum





More information about the lldb-commits mailing list