]> granicus.if.org Git - php/commitdiff
add help for break op command
authorkrakjoe <joe.watkins@live.co.uk>
Sun, 24 Nov 2013 07:01:50 +0000 (07:01 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Sun, 24 Nov 2013 07:01:50 +0000 (07:01 +0000)
phpdbg_help.c

index b8dc23cf4220956f8648f92e45d83a833faff3f8..9f56dbc1fd9c70a027e316c8d4368b068922a3a2 100644 (file)
@@ -243,6 +243,10 @@ PHPDBG_HELP(break) /* {{{ */
        phpdbg_writeln("\t%sb on ($expression == true)", PROMPT);
        phpdbg_writeln("\tWill break when the condition evaluates to true");
        phpdbg_writeln(EMPTY);
+       phpdbg_writeln("\t%sbreak op ZEND_ADD", PROMPT);
+       phpdbg_writeln("\t%sb O ZEND_ADD", PROMPT);
+       phpdbg_writeln("\tWill break on every occurence of the opcode provided");
+       phpdbg_writeln(EMPTY);
        phpdbg_writeln("Note: An address is only valid for the current compilation");
        phpdbg_writeln(EMPTY);
        phpdbg_notice("The parameters enclosed by [] are usually optional, but help avoid ambigious commands");